File: buildconf

package info (click to toggle)
php5 5.2.0%2Bdfsg-8%2Betch16
  • links: PTS
  • area: main
  • in suites: etch
  • size: 58,940 kB
  • ctags: 45,388
  • sloc: ansic: 533,605; sh: 17,835; php: 11,336; cpp: 4,289; xml: 3,809; yacc: 2,446; lex: 2,174; makefile: 1,150; tcl: 1,128; awk: 693; perl: 71; sql: 22; pascal: 15
file content (69 lines) | stat: -rwxr-xr-x 1,244 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/sh
# $Id: buildconf,v 1.64.2.1 2005/11/29 22:39:19 sniper Exp $

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