diff options
author | tijl <tijl@FreeBSD.org> | 2014-10-05 18:09:21 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2014-10-05 18:09:21 +0800 |
commit | 91279cd61a8bbf8f5e70b363de595bbb7988b780 (patch) | |
tree | 768cf15e6b60cd6fd4d4656b350f52ba340c1811 /dns | |
parent | cf1bb1de98eaec06fb2f4584cba483f4723064a7 (diff) | |
download | freebsd-ports-gnome-91279cd61a8bbf8f5e70b363de595bbb7988b780.tar.gz freebsd-ports-gnome-91279cd61a8bbf8f5e70b363de595bbb7988b780.tar.zst freebsd-ports-gnome-91279cd61a8bbf8f5e70b363de595bbb7988b780.zip |
Avoid dependency on devel/libtool
Diffstat (limited to 'dns')
-rw-r--r-- | dns/ldns/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/dns/ldns/Makefile b/dns/ldns/Makefile index bc3c66621bab..4c1936927359 100644 --- a/dns/ldns/Makefile +++ b/dns/ldns/Makefile @@ -14,8 +14,8 @@ COMMENT= Library for programs conforming to DNS RFCs and drafts LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +GNU_CONFIGURE= yes USES= gmake libtool -USE_AUTOTOOLS= libtoolize USE_OPENSSL= yes USE_LDCONFIG= yes @@ -108,15 +108,18 @@ CONFIGURE_ARGS+= --enable-rrtype-ta .if ! (defined(BUILD_PYLDNS) || defined(BUILD_P5PERL)) post-configure: +# ac_cv_prog_libtool=../libtool => Always use bundled libtool .if ${PORT_OPTIONS:MEXAMPLES} @(cd ${WRKSRC}/examples; ./configure --prefix=${PREFIX} \ --infodir=${PREFIX}/${INFO_PATH} --mandir=${MANPREFIX}/man \ - --build=${CONFIGURE_TARGET} ${NO_GOST} ${NO_SHA2}) + --build=${CONFIGURE_TARGET} ${NO_GOST} ${NO_SHA2} \ + ac_cv_prog_libtool=../libtool) .endif .if ${PORT_OPTIONS:MDRILL} @(cd ${WRKSRC}/drill; ./configure --prefix=${PREFIX} \ --mandir=${MANPREFIX}/man \ - --build=${CONFIGURE_TARGET}) + --build=${CONFIGURE_TARGET} \ + ac_cv_prog_libtool=../libtool) .endif post-build: |