HEX
Server: Apache
System: Linux msm5694.mjhst.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: camjab_ssh (1000)
PHP: 5.3.29
Disabled: NONE
Upload Files
File: //usr/src/php-7.2.34/buildconf
#!/bin/sh
# $Id$

eval `grep '^PHP_EXTRA_VERSION=' configure.ac`
case "$PHP_EXTRA_VERSION" in
  *-dev)
    dev=1
    ;;
  *)
    dev=0
    ;;
esac

devok=0
debug=no

while test $# -gt 0; do
  if test "$1" = "--force"; then
    devok=1
    echo "Forcing buildconf"
  fi

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

  shift
done

if test "$dev" = "0" -a "$devok" = "0"; then
  echo "You should not run buildconf in a release package." >&2
  echo "use buildconf --force to override this check." >&2
  exit 1
fi

if test "$devok" = "1"; then
  echo "Removing configure caches"
  rm -rf autom4te.cache config.cache
fi

rm -f generated_lists

if test "$debug" = "yes"; then
  ${MAKE:-make} -s -f build/build.mk SUPPRESS_WARNINGS=""
else
  ${MAKE:-make} -s -f build/build.mk
fi