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 /databases/firebird-devel | |
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 'databases/firebird-devel')
-rw-r--r-- | databases/firebird-devel/Makefile | 7 | ||||
-rw-r--r-- | databases/firebird-devel/files/patch-autogen.sh | 6 |
2 files changed, 5 insertions, 8 deletions
diff --git a/databases/firebird-devel/Makefile b/databases/firebird-devel/Makefile index 8a37a1250a7e..fc71d908a6dd 100644 --- a/databases/firebird-devel/Makefile +++ b/databases/firebird-devel/Makefile @@ -19,9 +19,9 @@ COMMENT= The open-source InterBase(tm) 6.0 spin-off (Classic version) USE_BZIP2= yes USE_GMAKE= yes -USE_LIBTOOL_VER= 13 +WANT_LIBTOOL_VER= 13 GNU_CONFIGURE= yes -USE_AUTOCONF_VER= 257 +WANT_AUTOCONF_VER= 259 USE_GCC= 3.3 CONFLICTS= firebird-1.* @@ -52,9 +52,6 @@ pre-everything:: @sleep 10 .endif -patch-autotools: - @${DO_NADA} - do-configure: @(cd ${WRKSRC} && ${ENV} CC=${CC} CXX=${CXX} MAKE=${GMAKE} ./autogen.sh --prefix=${PREFIX}/firebird --with-lock-manager --with-editline) diff --git a/databases/firebird-devel/files/patch-autogen.sh b/databases/firebird-devel/files/patch-autogen.sh index 509fba8c7bae..4fc68f20e112 100644 --- a/databases/firebird-devel/files/patch-autogen.sh +++ b/databases/firebird-devel/files/patch-autogen.sh @@ -5,7 +5,7 @@ DIE=0 -VER=`autoconf --version|grep '^[Aa]utoconf'|sed 's/^[^0-9]*//'` -+VER=`autoconf257 --version|grep '^[Aa]utoconf'|sed 's/^[^0-9]*//'` ++VER=`autoconf259 --version|grep '^[Aa]utoconf'|sed 's/^[^0-9]*//'` case "$VER" in 0* | 1\.* | 2\.[0-9] | 2\.[0-9][a-z]* | \ 2\.[1-4][0-9] | 2\.5[0-6][a-z]* ) @@ -33,11 +33,11 @@ echo "Running autoheader ..." -autoheader || exit 1 -+autoheader257 || exit 1 ++autoheader259 || exit 1 echo "Running autoconf ..." -autoconf || exit 1 -+autoconf257 || exit 1 ++autoconf259 || exit 1 # If NOCONFIGURE is set, skip the call to configure if test "x$NOCONFIGURE" = "x"; then |