From 440eae341254b683853ae1a0ced87d2da3072c42 Mon Sep 17 00:00:00 2001 From: foobar Date: Tue, 25 Jan 2005 12:55:55 +0000 Subject: [PATCH] MFH: - Return of the automake requirement --- NEWS | 2 +- scripts/phpize.in | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index d442390079..ec290879d4 100644 --- a/NEWS +++ b/NEWS @@ -2,7 +2,7 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? ????, Version 4.3.11 - Added Oracle Instant Client support. (cjbj at hotmail dot com, Tony) -- Changed phpize not to require automake and libtool. (Jani) +- Changed phpize not to require libtool. (Jani) - Fixed build system to always use bundled libtool files. (Jani) - Fixed MacOSX shared extensions crashing on Apache startup. (Rasmus) - Fixed bug #31623 (OCILogin does not support password grace period). diff --git a/scripts/phpize.in b/scripts/phpize.in index 6d09cf98d0..1901323471 100644 --- a/scripts/phpize.in +++ b/scripts/phpize.in @@ -90,6 +90,7 @@ phpize_copy_files() (cd "$phpdir" && cp $FILES_BUILD "$builddir"/build) (cd "$phpdir" && cp $FILES "$builddir") + (cd "$builddir" && cat ./build/libtool.m4 >> acinclude.m4) } phpize_replace_prefix() @@ -101,7 +102,7 @@ phpize_replace_prefix() phpize_autotools() { - cat acinclude.m4 ./build/libtool.m4 > aclocal.m4 || exit 1 + aclocal || exit 1 autoconf || exit 1 autoheader || exit 1 } -- 2.50.1