Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Feb 2014 22:12:52 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r345158 - head/sysutils/dd_rescue
Message-ID:  <201402192212.s1JMCqeR093768@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402192212.s1JMCqeR093768>