diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2014-09-17 07:38:15 +0000 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2014-09-17 07:38:15 +0000 |
commit | 15c4a5ecf338d0133b87647ab773c6df26f3ea15 (patch) | |
tree | 320f49e86d38a480aace5bd0e27c34d6c8f75c2c /security/libprelude | |
parent | a9836219c62bdf7cdcfc3af658d25ae25aeaeb11 (diff) |
Replace USE_AUTOTOOLS=libltdl with an ordinary LIB_DEPENDS in all ports.
There are only 60 such ports so there doesn't need to be a separate
keyword or USES for this.
Approved by: portmgr (bapt)
Notes
Notes:
svn path=/head/; revision=368356
Diffstat (limited to 'security/libprelude')
-rw-r--r-- | security/libprelude/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/libprelude/Makefile b/security/libprelude/Makefile index b2ad8d379c1c..e9184041a80e 100644 --- a/security/libprelude/Makefile +++ b/security/libprelude/Makefile @@ -13,7 +13,8 @@ COMMENT= Framework library for Prelude NIDS LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE.README -LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp \ +LIB_DEPENDS= libltdl.so:${PORTSDIR}/devel/libltdl \ + libgmp.so:${PORTSDIR}/math/gmp \ libgnutls.so:${PORTSDIR}/security/gnutls \ libgcrypt.so:${PORTSDIR}/security/libgcrypt \ libgpg-error.so:${PORTSDIR}/security/libgpg-error \ @@ -24,7 +25,6 @@ OPTIONS_DEFINE= DOCS PERL PYTHON OPTIONS_SUB= yes USES= charsetfix gettext gmake iconv libtool pathfix pkgconfig -USE_AUTOTOOLS= libltdl USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-static \ |