diff options
author | ade <ade@FreeBSD.org> | 2004-07-02 01:06:41 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2004-07-02 01:06:41 +0800 |
commit | b306cc5dcbefc30382f9f527a93cd80e0908854b (patch) | |
tree | cc39079ab42fe134d866eb0cad7648e1cb765ba7 /devel/apr0 | |
parent | d3dd320adf5a5916ddf9bae7e3a50a66da9764ab (diff) | |
download | freebsd-ports-gnome-b306cc5dcbefc30382f9f527a93cd80e0908854b.tar.gz freebsd-ports-gnome-b306cc5dcbefc30382f9f527a93cd80e0908854b.tar.zst freebsd-ports-gnome-b306cc5dcbefc30382f9f527a93cd80e0908854b.zip |
Autotools cleanup. Remove autoconf257 (259), automake17 (18), and
libtool14 (13/15).
PR: 67768
Submitted by: ade
Approved by: 4-exp bento runs (thanks, kris!)
Diffstat (limited to 'devel/apr0')
-rw-r--r-- | devel/apr0/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/devel/apr0/Makefile b/devel/apr0/Makefile index 6959b03be4a8..0839b490ad35 100644 --- a/devel/apr0/Makefile +++ b/devel/apr0/Makefile @@ -29,8 +29,8 @@ COMMENT= The Apache Group's Portability Library LIB_DEPENDS+= expat.5:${PORTSDIR}/textproc/expat2 USE_ICONV= yes -USE_AUTOMAKE_VER= 17 -USE_AUTOCONF_VER= 257 +USE_AUTOMAKE_VER= 18 +USE_AUTOCONF_VER= 259 WANT_LIBTOOL_VER= 15 USE_PERL5= yes USE_GMAKE= yes @@ -77,8 +77,6 @@ PKGNAMESUFFIX= -db4 .endif .endif -LIBTOOL_M4=${LOCALBASE}/share/aclocal/libtool${LIBTOOL_VERSION}.m4 - pre-extract: @${ECHO_MSG} "" .if defined(APR_UTIL_WITHOUT_THREADS) @@ -128,11 +126,11 @@ pre-configure: .endfor run-autotools: - cd ${WRKDIR}/apr-${PORTVERSION}; ${SETENV} ${SCRIPTS_ENV} LIBTOOL_M4=${LIBTOOL_M4} ${SH} ./buildconf + cd ${WRKDIR}/apr-${PORTVERSION}; ${SETENV} ${SCRIPTS_ENV} ${SH} ./buildconf cd ${WRKDIR}/apr-util-${PORTVERSION} ; \ ${RM} -fr xml/expat cd ${WRKDIR}/apr-util-${PORTVERSION} ; \ - ${SETENV} ${SCRIPTS_ENV} LIBTOOL_M4=${LIBTOOL_M4} ${SH} ./buildconf \ + ${SETENV} ${SCRIPTS_ENV} ${SH} ./buildconf \ --with-apr=../apr-${PORTVERSION} cd ${WRKDIR}/apr-${PORTVERSION}; \ ${SETENV} ${SCRIPTS_ENV} ${SH} ./configure ${CONFIGURE_ARGS} |