php-src/pear/php-config.in
Sascha Schumann f2f8d38efa 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.
1999-12-30 02:59:53 +00:00

17 lines
241 B
Bash

#! /bin/sh
prefix='@PREFIX@'
includes='-I@PHPINCLUDEDIR@ -I@PHPINCLUDEDIR@/Zend -I@PHPINCLUDEDIR@/TSRM'
case "$1" in
--prefix)
echo $prefix;;
--includes)
echo $includes;;
*)
echo "Usage: $0 [--prefix|--includes]"
exit 1;;
esac
exit 0