diff options
| author | foobar <sniper@php.net> | 2005-01-20 01:41:20 +0000 |
|---|---|---|
| committer | foobar <sniper@php.net> | 2005-01-20 01:41:20 +0000 |
| commit | 480a3b08d5a045fb228a5ee628b5108db82ec2a6 (patch) | |
| tree | 6631e1d6c809d9cfb1d20630d3eb12ab43ce6ef2 /build | |
| parent | aaf344e642f383de683311ae69679acc314792f8 (diff) | |
| download | php-git-480a3b08d5a045fb228a5ee628b5108db82ec2a6.tar.gz | |
- Changed phpize not to require automake and libtool.
- Fixed build system to always use bundled libtool files.
Diffstat (limited to 'build')
| -rw-r--r-- | build/build2.mk | 19 | ||||
| -rwxr-xr-x | build/buildcheck.sh | 41 |
2 files changed, 11 insertions, 49 deletions
diff --git a/build/build2.mk b/build/build2.mk index 97fd53ee44..42e20670b8 100644 --- a/build/build2.mk +++ b/build/build2.mk @@ -34,11 +34,12 @@ targets = $(TOUCH_FILES) configure $(config_h_in) ifeq ($(SHOW_WARNINGS), no) SUPPRESS_WARNINGS = 2>&1 | (egrep -v '(AC_TRY_RUN called without default to allow cross compiling|AC_PROG_CXXCPP was called before AC_PROG_CXX|defined in acinclude.m4 but never used|AC_PROG_LEX invoked multiple times|AC_DECL_YYTEXT is expanded from...|the top level)'||true) - libtoolize_flags = --automake +else + debug_target = debugging endif -all: $(targets) +all: $(targets) $(debug_target) acconfig.h: $(acconfig_h_SOURCES) @echo rebuilding $@ @@ -49,19 +50,19 @@ $(config_h_in): configure acconfig.h # correctly otherwise (timestamps are not updated) @echo rebuilding $@ @rm -f $@ - @autoheader $(SUPPRESS_WARNINGS) + autoheader $(SUPPRESS_WARNINGS) $(TOUCH_FILES): touch $(TOUCH_FILES) aclocal.m4: configure.in acinclude.m4 @echo rebuilding $@ - @libtoolize=`./build/shtool path glibtoolize libtoolize`; \ - $$libtoolize --copy $(libtoolize_flags); \ - ltpath=`dirname $$libtoolize`; \ - ltfile=`cd $$ltpath/../share/aclocal; pwd`/libtool.m4; \ - cat acinclude.m4 $$ltfile > $@ + cat acinclude.m4 ./build/libtool.m4 > $@ configure: aclocal.m4 configure.in $(config_m4_files) @echo rebuilding $@ - @autoconf $(SUPPRESS_WARNINGS) + autoconf $(SUPPRESS_WARNINGS) + +debugging: + @libtoolize=`./build/shtool path glibtoolize libtoolize`; \ + $$libtoolize diff --git a/build/buildcheck.sh b/build/buildcheck.sh index 7ce21a157a..4d0a51b5b3 100755 --- a/build/buildcheck.sh +++ b/build/buildcheck.sh @@ -16,7 +16,7 @@ # | Sascha Schumann <sascha@schumann.cx> | # +----------------------------------------------------------------------+ # -# $Id: buildcheck.sh,v 1.33 2005-01-19 22:27:39 sniper Exp $ +# $Id: buildcheck.sh,v 1.34 2005-01-20 01:41:19 sniper Exp $ # echo "buildconf: checking installation..." @@ -41,7 +41,6 @@ else echo "buildconf: autoconf version $ac_version (ok)" fi - if test "$1" = "2" && test "$2" -ge "50"; then echo "buildconf: Your version of autoconf likely contains buggy cache code." echo " Running cvsclean for you." @@ -50,44 +49,6 @@ if test "$1" = "2" && test "$2" -ge "50"; then stamp= fi -# libtoolize 1.4.3 or newer -# Prefer glibtoolize over libtoolize for Mac OS X compatibility -libtoolize=`./build/shtool path glibtoolize libtoolize 2> /dev/null` -lt_pversion=`$libtoolize --version 2>/dev/null|head -n 1|awk -F' ' '{print $NF}'` -if test "$lt_pversion" = ""; then -echo "buildconf: libtool not found." -echo " You need libtool version 1.4.3 or newer installed" -echo " to build PHP from CVS." -exit 1 -fi -IFS=.; set $lt_pversion; IFS=' ' - -if test "$3" = ""; then - third=0 -else - third=$3 -fi - -if test "$1" -gt "1" || test "$2" -ge "5" || (test "$2" -ge "4" && test "$third" -ge "3") -then -echo "buildconf: libtool version $lt_pversion (ok)" -else -echo "buildconf: libtool version $lt_pversion found." -echo " You need libtool version 1.4.3 or newer installed" -echo " to build PHP from CVS." -exit 1 -fi - -ltpath=`echo $libtoolize | sed -e 's#/[^/]*/[^/]*$##'` -ltfile="$ltpath/share/aclocal/libtool.m4" -if test -r "$ltfile"; then - : -else - echo "buildconf: $ltfile does not exist." - echo " Please reinstall libtool." - exit 1 -fi - test -n "$stamp" && touch $stamp exit 0 |
