1999-04-19 02:06:54 +08:00
|
|
|
#!/bin/sh
|
1999-12-02 10:14:06 +08:00
|
|
|
# $Id$
|
1999-04-19 02:06:54 +08:00
|
|
|
|
2007-07-27 06:45:59 +08:00
|
|
|
eval `grep '^PHP_EXTRA_VERSION=' configure.in`
|
|
|
|
case "$PHP_EXTRA_VERSION" in
|
2003-05-19 19:54:00 +08:00
|
|
|
*-dev)
|
|
|
|
dev=1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
dev=0
|
|
|
|
;;
|
2003-05-19 19:47:13 +08:00
|
|
|
esac
|
|
|
|
|
|
|
|
devok=0
|
2005-01-20 07:03:29 +08:00
|
|
|
debug=no
|
2003-05-19 19:47:13 +08:00
|
|
|
|
2003-12-02 16:00:23 +08:00
|
|
|
while test $# -gt 0; do
|
|
|
|
if test "$1" = "--force"; then
|
|
|
|
devok=1
|
|
|
|
echo "Forcing buildconf"
|
|
|
|
fi
|
1999-07-17 20:27:54 +08:00
|
|
|
|
2005-01-20 07:03:29 +08:00
|
|
|
if test "$1" = "--debug"; then
|
|
|
|
debug=yes
|
|
|
|
fi
|
|
|
|
|
2003-12-02 16:00:23 +08:00
|
|
|
shift
|
2002-06-24 11:05:00 +08:00
|
|
|
done
|
2002-06-23 23:47:40 +08:00
|
|
|
|
2003-05-19 19:47:13 +08:00
|
|
|
if test "$dev" = "0" -a "$devok" = "0"; then
|
2003-05-19 19:54:00 +08:00
|
|
|
echo "You should not run buildconf in a release package."
|
|
|
|
echo "use buildconf --force to override this check."
|
|
|
|
exit 1
|
2003-05-19 19:47:13 +08:00
|
|
|
fi
|
2012-03-07 05:30:59 +08:00
|
|
|
|
|
|
|
if test "$devok" = "1"; then
|
|
|
|
echo "Removing configure caches"
|
|
|
|
rm -rf autom4te.cache config.cache
|
|
|
|
fi
|
|
|
|
|
2000-08-24 13:55:19 +08:00
|
|
|
rm -f generated_lists
|
|
|
|
|
2005-02-04 01:42:42 +08:00
|
|
|
if test "$debug" = "yes"; then
|
2009-07-20 18:51:40 +08:00
|
|
|
${MAKE:-make} -s -f build/build.mk SUPPRESS_WARNINGS=""
|
2005-02-04 01:42:42 +08:00
|
|
|
else
|
2009-07-20 18:51:40 +08:00
|
|
|
${MAKE:-make} -s -f build/build.mk
|
2005-02-04 01:42:42 +08:00
|
|
|
fi
|