summaryrefslogtreecommitdiff
path: root/scripts/phpize.in
blob: 66ba42068a4420525a19b3274f831298e6a5e299 (plain)
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
#! /bin/sh

prefix='@prefix@'
phpdir="$prefix/lib/php/build"
includedir="$prefix/include/php"
builddir="`pwd`"

FILES_BUILD="mkdep.awk shtool"
FILES="acinclude.m4 Makefile.global scan_makefile_in.awk"
CLEAN_FILES="$FILES *.lo *.la *.o .deps .libs/ build/ include/ modules/ install-sh \
    mkinstalldirs missing config.nice config.sub config.guess configure configure.in \
	aclocal.m4 config.h config.h.in conftest* ltmain.sh libtool config.cache \
	config.log config.status Makefile Makefile.fragments Makefile.objects"

if test ! -r config.m4; then
  echo "Cannot find config.m4. "
  echo "Make sure that you run $0 in the top level source directory of the module"
  exit 1
fi

# Cleanup
if test "$1" = "--clean"; then
  echo "Cleaning.."
  for i in $CLEAN_FILES; do
    test -e && rm -rf $i
  done
  exit 0
fi

test -d build || mkdir build

(cd $phpdir && cp $FILES_BUILD "$builddir"/build)
(cd $phpdir && cp $FILES "$builddir")

sed \
-e "s#@prefix@#$prefix#" \
< $phpdir/phpize.m4 > configure.in

touch install-sh mkinstalldirs missing

aclocal
autoconf
autoheader
libtoolize -f -c

# dumping API NOs:
PHP_API_VERSION=`grep -E '#define PHP_API_VERSION' $includedir/main/php.h|sed 's/#define PHP_API_VERSION//'`
ZEND_MODULE_API_NO=`grep -E '#define ZEND_MODULE_API_NO' $includedir/Zend/zend_modules.h|sed 's/#define ZEND_MODULE_API_NO//'`
ZEND_EXTENSION_API_NO=`grep -E '#define ZEND_EXTENSION_API_NO' $includedir/Zend/zend_extensions.h|sed 's/#define ZEND_EXTENSION_API_NO//'`

echo "Configuring for:"
echo "  PHP Api Version:  "$PHP_API_VERSION
echo "  Zend Module Api No:  "$ZEND_MODULE_API_NO
echo "  Zend Extension Api No:  "$ZEND_EXTENSION_API_NO

exit 0