Check-in Number:
|
2005 | |
Date: |
2002-Mar-14 16:32:48 (local)
2002-Mar-14 15:32:48 (UTC) |
User: | thl |
Branch: | |
Comment: |
upgrade to Autoconf 2.53 environment |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/pcre/configure.ac 1.2 -> 1.3
--- configure.ac 2002/01/07 14:51:32 1.2
+++ configure.ac 2002/03/14 15:32:48 1.3
@@ -2,9 +2,8 @@
dnl ## Autoconf specification for PCRE library
dnl ##
-AC_PREREQ(2.52)dnl
-AC_REVISION($Revision: 1.2 $)
-AC_INIT(README)
+AC_PREREQ(2.53)
+AC_INIT
SHTOOL="./shtool"
AC_SUBST(SHTOOL)
@@ -19,12 +18,9 @@
echo "Copyright (c) 1997-2002 University of Cambridge, All rights reserved."
echo "Copyright (c) 1999-2002 Ralf S. Engelschall <rse@engelschall.com>"
-AC_CONFIG_HEADER(config.h)
-AC_PREFIX_DEFAULT(/usr/local)
-
+AC_PROG_MAKE_SET
AC_PROG_CC
AC_PROG_CPP
-AC_SET_MAKE
AC_ARG_ENABLE(utf8,dnl
[ --enable-utf8 enable UTF8 support (incomplete)],
@@ -44,10 +40,8 @@
sinclude(libtool.m4)
AC_PROG_LIBTOOL
-AC_OUTPUT(dnl
-Makefile dnl
-pcre-config dnl
-,dnl
-chmod a+x pcre-config
-)dnl
+AC_CONFIG_HEADERS(config.h)
+AC_CONFIG_FILES([Makefile pcre-config])
+AC_CONFIG_COMMANDS([adjustment], [chmod a+x pcre-config])
+AC_OUTPUT
|
|
ossp-pkg/pcre/devtool.conf 1.1 -> 1.2
--- devtool.conf 2002/01/07 14:51:32 1.1
+++ devtool.conf 2002/03/14 15:32:48 1.2
@@ -3,9 +3,9 @@
##
%autogen
- @autogen shtool 1.5.4 "1.5.*" echo install mkdir fixperm tarball
+ @autogen shtool 1.6.0 "1.6.*" echo install mkdir fixperm tarball
@autogen libtool 1.4.2 "1.4*"
- @autogen autoconf 2.52 "2.5.*"
+ @autogen autoconf 2.53 "2.5[3-9]*"
%autoclean
@autoclean shtool
|
|
ossp-pkg/pcre/devtool.func 1.1 -> 1.2
--- devtool.func 2002/01/07 14:51:32 1.1
+++ devtool.func 2002/03/14 15:32:48 1.2
@@ -33,6 +33,7 @@
echo "generating (GNU Autoconf $autoconf_version): configure config.h.in"
autoconf
autoheader 2>&1 | grep -v "is unchanged"
+ rm -rf autom4te.cache >/dev/null 2>&1
;;
libtool )
libtoolize_version=`devtool_require libtoolize --version 4 "$1" "$2"`
|
|