svn commit: r345158 - head/sysutils/dd_rescue

John Marino marino at FreeBSD.org
Wed Feb 19 22:12:53 UTC 2014


Author: marino
Date: Wed Feb 19 22:12:52 2014
New Revision: 345158
URL: http://svnweb.freebsd.org/changeset/ports/345158
QAT: https://qat.redports.org/buildarchive/r345158/

Log:
  sysutils/dd_rescue: unbreak everywhere
  
  The internal makefile calls autoconf and autoheader, but neither
  were specified as build dependencies before now.
  
  Note that this port will not build on FreeBSD 8 because __WORDSIZE is not
  defined in _stdint.h yet.  DragonFly got around it with setting these
  in Makefile.DragonFly:
  
    x86_64:
      MAKE_ARGS+= CFLAGS_OPT="-D__WORDSIZE=64"
      CFLAGS+=    -D__WORDSIZE=64
  
    i386:
      MAKE_ARGS+= CFLAGS_OPT="-D__WORDSIZE=32"
      CFLAGS+=    -D__WORDSIZE=32
  
  A similar fix could be done for FreeBSD 8, but it needs to cover more
  architectures.

Modified:
  head/sysutils/dd_rescue/Makefile

Modified: head/sysutils/dd_rescue/Makefile
==============================================================================
--- head/sysutils/dd_rescue/Makefile	Wed Feb 19 22:01:13 2014	(r345157)
+++ head/sysutils/dd_rescue/Makefile	Wed Feb 19 22:12:52 2014	(r345158)
@@ -15,6 +15,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 USES=		gmake
 USE_CSTD=	gnu89
+USE_AUTOTOOLS=	autoconf autoheader
 
 WRKSRC=		${WRKDIR}/${PORTNAME}
 ALL_TARGET=	default


More information about the svn-ports-head mailing list