sniper          Thu Feb  3 12:42:42 2005 EDT

  Modified files:              
    /php-src    buildconf 
    /php-src/build      build2.mk 
  Log:
  - Fix buildconf with BSD make
  
  
http://cvs.php.net/diff.php/php-src/buildconf?r1=1.63&r2=1.64&ty=u
Index: php-src/buildconf
diff -u php-src/buildconf:1.63 php-src/buildconf:1.64
--- php-src/buildconf:1.63      Wed Jan 19 18:03:29 2005
+++ php-src/buildconf   Thu Feb  3 12:42:42 2005
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $Id: buildconf,v 1.63 2005/01/19 23:03:29 sniper Exp $
+# $Id: buildconf,v 1.64 2005/02/03 17:42:42 sniper Exp $
 
 eval `grep '^EXTRA_VERSION=' configure.in`
 case "$EXTRA_VERSION" in
@@ -66,4 +66,8 @@
  
 rm -f generated_lists
 
-${MAKE:-make} -s -f build/build.mk AMFLAGS="$automake_flags" 
ZENDDIR="$ZENDDIR" SHOW_WARNINGS="$debug"
+if test "$debug" = "yes"; then
+  ${MAKE:-make} -s -f build/build.mk AMFLAGS="$automake_flags" 
ZENDDIR="$ZENDDIR" SUPPRESS_WARNINGS=""
+else
+  ${MAKE:-make} -s -f build/build.mk AMFLAGS="$automake_flags" 
ZENDDIR="$ZENDDIR"
+fi
http://cvs.php.net/diff.php/php-src/build/build2.mk?r1=1.34&r2=1.35&ty=u
Index: php-src/build/build2.mk
diff -u php-src/build/build2.mk:1.34 php-src/build/build2.mk:1.35
--- php-src/build/build2.mk:1.34        Wed Jan 19 20:41:19 2005
+++ php-src/build/build2.mk     Thu Feb  3 12:42:42 2005
@@ -14,7 +14,7 @@
 #  | Author: Sascha Schumann <[EMAIL PROTECTED]>                         |
 #  +----------------------------------------------------------------------+
 #
-# $Id: build2.mk,v 1.34 2005/01/20 01:41:19 sniper Exp $ 
+# $Id: build2.mk,v 1.35 2005/02/03 17:42:42 sniper Exp $ 
 #
 
 include generated_lists
@@ -32,14 +32,9 @@
 
 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)
-else
-       debug_target = debugging
-endif
+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)
 
-
-all: $(targets) $(debug_target)
+all: $(targets)
 
 acconfig.h: $(acconfig_h_SOURCES)
        @echo rebuilding $@
@@ -63,6 +58,3 @@
        @echo rebuilding $@
        autoconf $(SUPPRESS_WARNINGS)
 
-debugging:
-       @libtoolize=`./build/shtool path glibtoolize libtoolize`; \
-       $$libtoolize


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to