diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2002-03-27 00:34:17 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2002-03-27 00:34:17 +0000 |
commit | ef063e6018cedbca94e0cd0bf7f388e8aa8aecd8 (patch) | |
tree | 0a82db74da35b58e5c900a432a7cbe30c9ed1943 /net-im/gale/Makefile | |
parent | 6d715f98042b1ae0a34d7d7b08c79abcf822c9f4 (diff) |
It is important to run aclocal before the build to ensure that a fix
for a buggy autoconf macro is included, so add USE_AUTOMAKE_VER and
USE_LIBTOOL (in this case, we need the libtool automake macro
AM_PROG_LIBTOOL).
PR: 36347
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=56722
Diffstat (limited to 'net-im/gale/Makefile')
-rw-r--r-- | net-im/gale/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net-im/gale/Makefile b/net-im/gale/Makefile index 9d63739597e5..cbb0fe0a8235 100644 --- a/net-im/gale/Makefile +++ b/net-im/gale/Makefile @@ -19,6 +19,8 @@ LIB_DEPENDS= wwwcore.1:${PORTSDIR}/www/libwww \ USE_OPENSSL= yes USE_AUTOCONF_VER=213 +USE_AUTOMAKE_VER=14 +USE_LIBTOOL= yes INSTALLS_SHLIB= yes CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib @@ -27,6 +29,9 @@ CPPFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib \ LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" +pre-configure: + cd ${WRKSRC} && ${ACLOCAL} -I ${LOCALBASE}/share/libtool/libltdl + post-install: @${CAT} ${PKGMESSAGE} |