From: Stig Bakken Date: Mon, 19 Apr 1999 20:11:50 +0000 (+0000) Subject: convert libzend to automake X-Git-Tag: BEFORE_PHP4_APACHE_MODULE_CHANGE~271 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=84e9ea172699dcae7a29a0651448845ba2bf056e;p=php convert libzend to automake --- diff --git a/buildconf b/buildconf index c67291d26b..8335bce705 100755 --- a/buildconf +++ b/buildconf @@ -1,13 +1,6 @@ #!/bin/sh -mv configure.in configure.in.old 2>/dev/null ./scripts/preconfig -if cmp configure.in.old configure.in > /dev/null 2>&1; then - echo keeping configure.in - mv configure.in.old configure.in -else - echo created or modified configure.in -fi if test -f mkinstalldirs; then automake @@ -34,6 +27,22 @@ else fi cd libzend + +if test -f mkinstalldirs; then + automake +else + automake --add-missing +fi + +mv aclocal.m4 aclocal.m4.old 2>/dev/null +aclocal +if cmp aclocal.m4.old aclocal.m4 > /dev/null 2>&1; then + echo keeping libzend/aclocal.m4 + mv aclocal.m4.old aclocal.m4 +else + echo created or modified libzend/aclocal.m4 +fi + mv configure configure.old 2>/dev/null autoconf if cmp configure.old configure > /dev/null 2>&1; then @@ -42,4 +51,3 @@ if cmp configure.old configure > /dev/null 2>&1; then else echo created or modified libzend/configure fi -