diff options
| author | Sascha Schumann <sas@php.net> | 2000-05-02 20:56:03 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 2000-05-02 20:56:03 +0000 |
| commit | cae3b7dff552e6f34be01f735122e9c0e6928591 (patch) | |
| tree | bced805cd4f8784b51f685c13b1175c1c751706f /pear/php-config.in | |
| parent | 5989ae5dc15ad6823d702b3545f623d30ec90449 (diff) | |
| download | php-git-cae3b7dff552e6f34be01f735122e9c0e6928591.tar.gz | |
Pear Changes:
Store EXTENSION_DIR in php-config
Ignore errors during header installation
Automatically enable modules in self-contained mode
Create empty .deps in builddir
Diffstat (limited to 'pear/php-config.in')
| -rw-r--r-- | pear/php-config.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pear/php-config.in b/pear/php-config.in index 5058c75e1c..cdd375b2dc 100644 --- a/pear/php-config.in +++ b/pear/php-config.in @@ -2,14 +2,17 @@ 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]" + echo "Usage: $0 [--prefix|--includes|--extension-dir]" exit 1;; esac |
