mirror of
https://github.com/php/php-src.git
synced 2025-08-17 06:28:50 +02:00

Store EXTENSION_DIR in php-config Ignore errors during header installation Automatically enable modules in self-contained mode Create empty .deps in builddir
19 lines
329 B
Bash
19 lines
329 B
Bash
#! /bin/sh
|
|
|
|
prefix='@PREFIX@'
|
|
includes='-I@PHPINCLUDEDIR@ -I@PHPINCLUDEDIR@/Zend -I@PHPINCLUDEDIR@/TSRM'
|
|
extension_dir='@EXTENSION_DIR@'
|
|
|
|
case "$1" in
|
|
--prefix)
|
|
echo $prefix;;
|
|
--includes)
|
|
echo $includes;;
|
|
--extension-dir)
|
|
echo $extension_dir;;
|
|
*)
|
|
echo "Usage: $0 [--prefix|--includes|--extension-dir]"
|
|
exit 1;;
|
|
esac
|
|
|
|
exit 0
|