Skip to content

Commit

Permalink
Added --debug option to buildconf
Browse files Browse the repository at this point in the history
  • Loading branch information
foobar committed Jan 19, 2005
1 parent ed25ab6 commit 52e00b8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
13 changes: 8 additions & 5 deletions build/build2.mk
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -32,33 +32,36 @@ acconfig_h_SOURCES = acconfig.h.in $(config_h_files)


targets = $(TOUCH_FILES) configure $(config_h_in) 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
endif



all: $(targets) all: $(targets)


acconfig.h: $(acconfig_h_SOURCES) acconfig.h: $(acconfig_h_SOURCES)
@echo rebuilding $@ @echo rebuilding $@
cat $(acconfig_h_SOURCES) > $@ cat $(acconfig_h_SOURCES) > $@


SUPPRESS_WARNINGS = (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)'||true)

$(config_h_in): configure acconfig.h $(config_h_in): configure acconfig.h
# explicitly remove target since autoheader does not seem to work # explicitly remove target since autoheader does not seem to work
# correctly otherwise (timestamps are not updated) # correctly otherwise (timestamps are not updated)
@echo rebuilding $@ @echo rebuilding $@
@rm -f $@ @rm -f $@
@autoheader 2>&1 | $(SUPPRESS_WARNINGS) @autoheader $(SUPPRESS_WARNINGS)


$(TOUCH_FILES): $(TOUCH_FILES):
touch $(TOUCH_FILES) touch $(TOUCH_FILES)


aclocal.m4: configure.in acinclude.m4 aclocal.m4: configure.in acinclude.m4
@echo rebuilding $@ @echo rebuilding $@
@libtoolize=`./build/shtool path glibtoolize libtoolize`; \ @libtoolize=`./build/shtool path glibtoolize libtoolize`; \
$$libtoolize --copy --automake; \ $$libtoolize --copy $(libtoolize_flags); \
ltpath=`dirname $$libtoolize`; \ ltpath=`dirname $$libtoolize`; \
ltfile=`cd $$ltpath/../share/aclocal; pwd`/libtool.m4; \ ltfile=`cd $$ltpath/../share/aclocal; pwd`/libtool.m4; \
cat acinclude.m4 $$ltfile > $@ cat acinclude.m4 $$ltfile > $@


configure: aclocal.m4 configure.in $(config_m4_files) configure: aclocal.m4 configure.in $(config_m4_files)
@echo rebuilding $@ @echo rebuilding $@
@autoconf 2>&1 | $(SUPPRESS_WARNINGS) @autoconf $(SUPPRESS_WARNINGS)
11 changes: 8 additions & 3 deletions buildconf
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ case "$EXTRA_VERSION" in
esac esac


devok=0 devok=0
debug=no


while test $# -gt 0; do while test $# -gt 0; do
if test "$1" = "--copy"; then if test "$1" = "--copy"; then
Expand All @@ -23,6 +24,10 @@ while test $# -gt 0; do
echo "Forcing buildconf" echo "Forcing buildconf"
fi fi


if test "$1" = "--debug"; then
debug=yes
fi

shift shift
done done


Expand All @@ -48,17 +53,17 @@ if test -z "$ZENDDIR"; then
fi fi
else else
if test -r "Zend/zend_execute_globals.h"; then if test -r "Zend/zend_execute_globals.h"; then
: :
else else
mv Zend ZendEngine2 2>/dev/null mv Zend ZendEngine2 2>/dev/null
mv ZendEngine1 Zend mv ZendEngine1 Zend
fi fi
fi fi

ZENDDIR=Zend ZENDDIR=Zend
echo "using default Zend directory" echo "using default Zend directory"
fi fi


rm -f generated_lists rm -f generated_lists


${MAKE:-make} -s -f build/build.mk AMFLAGS="$automake_flags" ZENDDIR="$ZENDDIR" ${MAKE:-make} -s -f build/build.mk AMFLAGS="$automake_flags" ZENDDIR="$ZENDDIR" SHOW_WARNINGS="$debug"

0 comments on commit 52e00b8

Please sign in to comment.