- Update to 4.6

PR:		ports/104119
Submitted by:	chinsan
This commit is contained in:
Cheng-Lung Sung 2006-10-07 17:14:24 +00:00
parent 01840bf3b2
commit e09c0cde3a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=174814
4 changed files with 22 additions and 23 deletions

View file

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

View file

@ -1,3 +1,3 @@
MD5 (dmake_4.5.orig.tar.gz) = 750ebbd7a12e665c893e838610c83b35
SHA256 (dmake_4.5.orig.tar.gz) = 5bc04449a8796e249d9914ae88813436aad9acdab8abf78ac5019f0d873a2f1f
SIZE (dmake_4.5.orig.tar.gz) = 602797
MD5 (dmake_4.6.orig.tar.gz) = e8051185b04dd100253c6945ac38277f
SHA256 (dmake_4.6.orig.tar.gz) = b2d88065f0664b23d4a1d162d4193fa5839450b08d1920d3f7bff995a1f0e480
SIZE (dmake_4.6.orig.tar.gz) = 664106

View file

@ -1,22 +1,22 @@
--- sysintf.c.orig Thu Feb 2 05:39:56 2006
+++ sysintf.c Mon May 1 18:33:02 2006
@@ -596,13 +596,12 @@
--- 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, suff)) != -1)
if( (fd = Create_temp(tmpdir, path)) != -1)
break;
free(*path);
free(*path); /* free var if creating temp failed. */
- }
+ } while( --tries );
if( fd != -1)
{
@@ -839,8 +838,9 @@
@@ -881,8 +880,8 @@
}
if( Verbose & V_MAKE )
@ -24,7 +24,6 @@
- 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,10 +1,10 @@
bin/dmake
share/dmake/startup/config.mk
share/dmake/startup/startup.mk
share/dmake/startup/unix/linux/macros.mk
share/dmake/startup/unix/macros.mk
share/dmake/startup/unix/recipes.mk
@dirrm share/dmake/startup/unix/linux
@dirrm share/dmake/startup/unix
@dirrm share/dmake/startup
@dirrm share/dmake
%%DATADIR%%/startup/config.mk
%%DATADIR%%/startup/startup.mk
%%DATADIR%%/startup/unix/linux/macros.mk
%%DATADIR%%/startup/unix/macros.mk
%%DATADIR%%/startup/unix/recipes.mk
@dirrm %%DATADIR%%/startup/unix/linux
@dirrm %%DATADIR%%/startup/unix
@dirrm %%DATADIR%%/startup
@dirrm %%DATADIR%%