diff options
author | tijl <tijl@FreeBSD.org> | 2014-02-24 17:14:02 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2014-02-24 17:14:02 +0800 |
commit | 9776719d912f663982404e24cd94b66663d9670f (patch) | |
tree | ff64cbfc21bd373e38145a6d6b6bb468c890dfb7 /devel | |
parent | 6348f4875578ceac294e08af12ac9346f36c7169 (diff) | |
download | freebsd-ports-gnome-9776719d912f663982404e24cd94b66663d9670f.tar.gz freebsd-ports-gnome-9776719d912f663982404e24cd94b66663d9670f.tar.zst freebsd-ports-gnome-9776719d912f663982404e24cd94b66663d9670f.zip |
- The configure script of libghthash has been generated with macros from
a newer version of libtool than the ltmain.sh script. Fix this by
running libtoolize. Because this brings in an even more recent version
of libtool this also requires regenerating aclocal.m4 (aclocal) and
configure (autoconf).
- There's also a warning during configure about the 'missing' script being
out of date so also run automake.
- Remove CONFIGURE_ARGS. It's not needed.
Approved by: gahr (maintainer)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libghthash/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/libghthash/Makefile b/devel/libghthash/Makefile index 914f45f26c01..2901aad7c849 100644 --- a/devel/libghthash/Makefile +++ b/devel/libghthash/Makefile @@ -3,7 +3,7 @@ PORTNAME= libghthash PORTVERSION= 0.6.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= http://www.ipd.bth.se/ska/sim_home/filer/ @@ -14,7 +14,9 @@ OPTIONS_DEFINE= DOCS EXAMPLES USES= libtool GNU_CONFIGURE= yes -CONFIGURE_ARGS= --datarootdir=${PREFIX} +USE_AUTOTOOLS= aclocal autoheader automake autoconf libtoolize +AUTOMAKE_ARGS= -a -c -f +LIBTOOLIZE_ARGS=-i -c -f USE_LDCONFIG= yes PLIST_FILES= include/ght_hash_table.h \ |