diff options
author | Sascha Schumann <sas@php.net> | 1999-12-30 02:59:53 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-12-30 02:59:53 +0000 |
commit | f2f8d38efa3ccbaa05affaf8fcab24786ef452de (patch) | |
tree | c546807d61a77a191f89056212a4c40c63f0e83b /pear/phpize.in | |
parent | 6bf3529919cf60389797a107cab16c826df3e68f (diff) | |
download | php-git-f2f8d38efa3ccbaa05affaf8fcab24786ef452de.tar.gz |
Integration of -ng changes. Changes:
- added support for externally built modules,
- improved support for in-tree shared modules,
- fixed diversion bugs,
- configure displays some informative messages,
- faster static build
(libtool isn't used anymore for compiling non-PIC objects),
- dependencies comparable to automake's without requiring GNU make or GCC,
- working make clean for non-GNU makes.
Diffstat (limited to 'pear/phpize.in')
-rw-r--r-- | pear/phpize.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pear/phpize.in b/pear/phpize.in new file mode 100644 index 0000000000..ac4424dd1c --- /dev/null +++ b/pear/phpize.in @@ -0,0 +1,26 @@ +#! /bin/sh + +prefix='@PREFIX@' + +phpdir="$prefix/lib/php/build" + +test -d build || mkdir build + +for i in fastgen.sh library.mk ltlib.mk program.mk rules.mk rules_pear.mk shtool; do + cp $phpdir/$i build +done + +mv build/rules_pear.mk build/rules.mk + +cp $phpdir/acinclude.m4 . + +sed \ +-e "s#@prefix@#$prefix#" \ +< $phpdir/pear.m4 > configure.in + +touch .deps install-sh mkinstalldirs missing + +aclocal +autoconf +autoheader +libtoolize -f -c |