diff options
author | Sascha Schumann <sas@php.net> | 2000-06-14 08:30:37 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-06-14 08:30:37 +0000 |
commit | e53b791b3e3a18222a0c371d82dea56b3721ab12 (patch) | |
tree | 004dc8bf2551534f75e00b22046469e95f40e5b4 | |
parent | 177e77fdabd211ff31d143df0de56088c8352950 (diff) | |
download | php-git-e53b791b3e3a18222a0c371d82dea56b3721ab12.tar.gz |
Copy header files from main and also add that directory to the list
of include directories.
-rw-r--r-- | pear/Makefile.in | 1 | ||||
-rw-r--r-- | pear/php-config.in | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/pear/Makefile.in b/pear/Makefile.in index 18594eb7e9..c4e92fe285 100644 --- a/pear/Makefile.in +++ b/pear/Makefile.in @@ -74,6 +74,7 @@ HEADER_DIRS = \ Zend \ TSRM \ ext/standard \ + main \ regex install-headers: diff --git a/pear/php-config.in b/pear/php-config.in index cdd375b2dc..4649251e12 100644 --- a/pear/php-config.in +++ b/pear/php-config.in @@ -1,7 +1,7 @@ #! /bin/sh prefix='@PREFIX@' -includes='-I@PHPINCLUDEDIR@ -I@PHPINCLUDEDIR@/Zend -I@PHPINCLUDEDIR@/TSRM' +includes='-I@PHPINCLUDEDIR@ -I@PHPINCLUDEDIR@/main -I@PHPINCLUDEDIR@/Zend -I@PHPINCLUDEDIR@/TSRM' extension_dir='@EXTENSION_DIR@' case "$1" in |