summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2006-10-15 21:09:28 +0000
committerSVN Migration <svn@php.net>2006-10-15 21:09:28 +0000
commit88ec761548b66f58acc1a86cdd0fc164ca925476 (patch)
treed0af978fa00d83bb1d82c613f66477fbd6bb18aa /buildconf
parent268984b4787e797db6054313fc9ba3b9e845306e (diff)
downloadphp-git-PECL_OPENSSL.tar.gz
This commit was manufactured by cvs2svn to create branch 'PECL_OPENSSL'.PECL_OPENSSL
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf69
1 files changed, 0 insertions, 69 deletions
diff --git a/buildconf b/buildconf
deleted file mode 100755
index 78a3f3d7ae..0000000000
--- a/buildconf
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/bin/sh
-# $Id$
-
-eval `grep '^EXTRA_VERSION=' configure.in`
-case "$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."
- echo "use buildconf --force to override this check."
- exit 1
-fi
-
-if test -z "$ZENDDIR"; then
- if grep "PHP_MAJOR_VERSION 5" main/php_version.h >/dev/null; then
- v=5
- else
- v=4
- fi
-
- if test "$v" = "5"; then
- if test -r "Zend/OBJECTS2_HOWTO"; then
- :
- else
- mv Zend ZendEngine1 2>/dev/null
- mv ZendEngine2 Zend
- fi
- else
- if test -r "Zend/zend_execute_globals.h"; then
- :
- else
- mv Zend ZendEngine2 2>/dev/null
- mv ZendEngine1 Zend
- fi
- fi
-
- ZENDDIR=Zend
- echo "using default Zend directory"
-fi
-
-rm -f generated_lists
-
-if test "$debug" = "yes"; then
- ${MAKE:-make} -s -f build/build.mk ZENDDIR="$ZENDDIR" SUPPRESS_WARNINGS=""
-else
- ${MAKE:-make} -s -f build/build.mk ZENDDIR="$ZENDDIR"
-fi