Update version to 4.7.

PR:		ports/108433
Submitted by:	Marcelo Araujo
Approved by:	edwin (mentor)
This commit is contained in:
David Thiel 2007-03-16 18:37:56 +00:00
parent 1518222523
commit d660af0a51
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=187529
9 changed files with 4 additions and 111 deletions

View File

@ -6,7 +6,7 @@
# #
PORTNAME= dmake PORTNAME= dmake
PORTVERSION= 4.6 PORTVERSION= 4.7
CATEGORIES= devel CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL} MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL}
DISTNAME= ${PORTNAME}_${PORTVERSION}.orig DISTNAME= ${PORTNAME}_${PORTVERSION}.orig

View File

@ -1,3 +1,3 @@
MD5 (dmake_4.6.orig.tar.gz) = e8051185b04dd100253c6945ac38277f MD5 (dmake_4.7.orig.tar.gz) = 47427671d056955cf7b573c9031f860e
SHA256 (dmake_4.6.orig.tar.gz) = b2d88065f0664b23d4a1d162d4193fa5839450b08d1920d3f7bff995a1f0e480 SHA256 (dmake_4.7.orig.tar.gz) = ba63d57790b815f568487abdce1deb4b5ca1b23a1582d6d79a45d53cad97564f
SIZE (dmake_4.6.orig.tar.gz) = 664106 SIZE (dmake_4.7.orig.tar.gz) = 700365

View File

@ -1,17 +0,0 @@
--- configure.old Thu Apr 20 22:28:24 2006
+++ configure Thu Apr 20 22:32:50 2006
@@ -6420,12 +6420,13 @@
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
$ac_includes_default
+#include <utime.h>
int
main ()
{
struct stat s, t;
exit (!(stat ("conftest.data", &s) == 0
- && utime ("conftest.data", (long *)0) == 0
+ && utime ("conftest.data", (void *)0) == 0
&& stat ("conftest.data", &t) == 0
&& t.st_mtime >= s.st_mtime
&& t.st_mtime - s.st_mtime < 120));

View File

@ -1,11 +0,0 @@
--- getinp.c.orig Thu Apr 20 22:38:09 2006
+++ getinp.c Thu Apr 20 22:39:39 2006
@@ -497,7 +497,7 @@
static short action[MAX_COND_DEPTH];
static char ifcntl[MAX_COND_DEPTH];
char *lhs, *expr, *expr_end;
- char *lop;
+ const char *lop;
int result;
DB_ENTER( "_handle_conditional" );

View File

@ -1,14 +0,0 @@
--- make.c.orig Mon May 1 18:43:36 2006
+++ make.c Mon May 1 18:45:08 2006
@@ -341,8 +341,9 @@
}
if( Verbose & V_MAKE )
- printf("%s: Time stamp of [%s] is %ld\n",Pname,tcp->CE_NAME,
- tcp->ce_time);
+ printf("%s: Time stamp of [%s] is %llu\n",Pname,tcp->CE_NAME,
+ (unsigned long long)tcp->ce_time);
+
}
}
}

View File

@ -1,13 +0,0 @@
--- stat.c.orig Mon May 1 18:23:40 2006
+++ stat.c Mon May 1 18:25:04 2006
@@ -139,8 +139,8 @@
}
if( Verbose & V_MAKE )
- printf( "%s: Checking library '%s' for member [%s], time %ld\n",
- Pname, cp->ce_lib, name, cp->ce_time );
+ printf( "%s: Checking library '%s' for member [%s], time %llu\n",
+ Pname, cp->ce_lib, name, (unsigned long long)cp->ce_time );
}
FREE( tmp );

View File

@ -1,29 +0,0 @@
--- sysintf.c.orig Sun Oct 8 00:23:30 2006
+++ sysintf.c Sun Oct 8 00:23:30 2006
@@ -608,13 +608,12 @@
if( tmpdir == NIL(char) )
tmpdir = "/tmp";
- while( --tries )
- {
+ do {
if( (fd = Create_temp(tmpdir, path)) != -1)
break;
free(*path); /* free var if creating temp failed. */
- }
+ } while( --tries );
if( fd != -1)
{
@@ -881,8 +880,8 @@
}
if( Verbose & V_MAKE )
- printf( "%s: <<<< Set [%s] time stamp to %lu\n",
- Pname, tcp->CE_NAME, tcp->ce_time );
+ printf( "%s: <<<< Set [%s] time stamp to %llu\n",
+ Pname, tcp->CE_NAME, (unsigned long long)tcp->ce_time );
if( Measure & M_TARGET )
Do_profile_output( "e", M_TARGET, tcp );

View File

@ -1,11 +0,0 @@
--- unix/arlib.c.orig Mon May 1 18:35:44 2006
+++ unix/arlib.c Mon May 1 18:37:16 2006
@@ -421,7 +421,7 @@
fseek(f, arhdroffset + (unsigned long)(((struct ar_hdr *)0)->ar_date), 0);
#if ASCARCH
- fprintf(f, "%lu", now);
+ fprintf(f, "%llu", (unsigned long long)now);
#else
fwrite((char *)now, sizeof(now), 1, f);
#endif

View File

@ -1,12 +0,0 @@
--- unix/runargv.c.orig Mon May 1 18:38:28 2006
+++ unix/runargv.c Mon May 1 18:38:58 2006
@@ -66,6 +66,9 @@
with runargv().
*/
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
#include <signal.h>
#include "extern.h"