diff options
author | John Marino <marino@FreeBSD.org> | 2014-02-19 22:12:52 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-02-19 22:12:52 +0000 |
commit | a6a9093532555038fe829830cc5e556852b50abb (patch) | |
tree | 521ae7d615a23664683e52812d921c9537b22646 /sysutils/dd_rescue | |
parent | Restore ll-core dependency and instead just don't overwrite files from it. (diff) |
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.
Diffstat (limited to 'sysutils/dd_rescue')
-rw-r--r-- | sysutils/dd_rescue/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysutils/dd_rescue/Makefile b/sysutils/dd_rescue/Makefile index 9abf07558e2a..5eaece07eb31 100644 --- a/sysutils/dd_rescue/Makefile +++ b/sysutils/dd_rescue/Makefile @@ -15,6 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= gmake USE_CSTD= gnu89 +USE_AUTOTOOLS= autoconf autoheader WRKSRC= ${WRKDIR}/${PORTNAME} ALL_TARGET= default |