diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2013-03-14 05:42:27 +0000 |
---|---|---|
committer | <> | 2013-04-03 16:25:08 +0000 |
commit | c4dd7a1a684490673e25aaf4fabec5df138854c4 (patch) | |
tree | 4d57c44caae4480efff02b90b9be86f44bf25409 /Zend/buildconf | |
download | php2-master.tar.gz |
Imported from /home/lorry/working-area/delta_php2/php-5.4.13.tar.bz2.HEADphp-5.4.13master
Diffstat (limited to 'Zend/buildconf')
-rwxr-xr-x | Zend/buildconf | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Zend/buildconf b/Zend/buildconf new file mode 100755 index 0000000..fe8dee6 --- /dev/null +++ b/Zend/buildconf @@ -0,0 +1,33 @@ +#!/bin/sh + +case "$1" in +--copy) + automake_flags=--copy + shift +;; +esac + +libtoolize --force --automake $automake_flags + +mv aclocal.m4 aclocal.m4.old 2>/dev/null +aclocal +if cmp aclocal.m4.old aclocal.m4 > /dev/null 2>&1; then + echo "buildconf: keeping ${1}aclocal.m4" + mv aclocal.m4.old aclocal.m4 +else + echo "buildconf: created or modified ${1}aclocal.m4" +fi + +autoheader + +automake --add-missing --include-deps $automake_flags + +mv configure configure.old 2>/dev/null +autoconf +if cmp configure.old configure > /dev/null 2>&1; then + echo "buildconf: keeping ${1}configure" + mv configure.old configure +else + echo "buildconf: created or modified ${1}configure" +fi + |