mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
- Added PHP_INSTALL_HEADERS() macro
- Fixed several VPATH build issues - Changed all awk calls to use $AWK - Changed all mkdir calls to use "$php_shtool mkdir"
This commit is contained in:
parent
deacfcefc2
commit
626253940e
19 changed files with 88 additions and 95 deletions
|
@ -31,32 +31,14 @@ install-build:
|
|||
$(INSTALL) $(BUILD_FILES_EXEC) $(INSTALL_ROOT)$(phpbuilddir) && \
|
||||
$(INSTALL_DATA) $(BUILD_FILES) $(INSTALL_ROOT)$(phpbuilddir))
|
||||
|
||||
HEADER_DIRS = \
|
||||
Zend/ \
|
||||
TSRM/ \
|
||||
include/ \
|
||||
main/ \
|
||||
main/streams/ \
|
||||
regex/ \
|
||||
ext/iconv/ \
|
||||
ext/libxml/ \
|
||||
ext/standard/ \
|
||||
ext/session/ \
|
||||
ext/dom/xml_common.h \
|
||||
ext/xml/ \
|
||||
ext/mbstring/ \
|
||||
ext/mbstring/libmbfl/ \
|
||||
ext/mbstring/libmbfl/mbfl/ \
|
||||
ext/sqlite/libsqlite/src/sqlite.h
|
||||
|
||||
install-headers:
|
||||
-@for i in $(HEADER_DIRS); do \
|
||||
-@for i in $(INSTALL_HEADERS); do \
|
||||
i=`$(top_srcdir)/build/shtool path -d $$i`; \
|
||||
paths="$$paths $(INSTALL_ROOT)$(phpincludedir)/$$i"; \
|
||||
done; \
|
||||
$(mkinstalldirs) $$paths && \
|
||||
echo "Installing header files: $(INSTALL_ROOT)$(phpincludedir)/" && \
|
||||
for i in $(HEADER_DIRS); do \
|
||||
for i in $(INSTALL_HEADERS); do \
|
||||
if test -f "$(top_srcdir)/$$i"; then \
|
||||
$(INSTALL_DATA) $(top_srcdir)/$$i $(INSTALL_ROOT)$(phpincludedir)/$$i; \
|
||||
elif test -f "$(top_builddir)/$$i"; then \
|
||||
|
|
|
@ -2,8 +2,6 @@ dnl This file becomes configure.in for self-contained extensions.
|
|||
|
||||
AC_INIT(config.m4)
|
||||
|
||||
PHP_INIT_BUILD_SYSTEM
|
||||
|
||||
AC_DEFUN([PHP_WITH_PHP_CONFIG],[
|
||||
AC_ARG_WITH(php-config,
|
||||
[ --with-php-config=PATH],[
|
||||
|
@ -19,6 +17,10 @@ AC_DEFUN([PHP_WITH_PHP_CONFIG],[
|
|||
if test -z "$prefix"; then
|
||||
AC_MSG_ERROR(Cannot find php-config. Please use --with-php-config=PATH)
|
||||
fi
|
||||
|
||||
php_shtool=$srcdir/build/shtool
|
||||
PHP_INIT_BUILD_SYSTEM
|
||||
|
||||
AC_MSG_CHECKING(for PHP prefix)
|
||||
AC_MSG_RESULT($prefix)
|
||||
AC_MSG_CHECKING(for PHP includes)
|
||||
|
@ -106,7 +108,7 @@ PHP_SUBST(SHELL)
|
|||
PHP_GEN_BUILD_DIRS
|
||||
PHP_GEN_GLOBAL_MAKEFILE
|
||||
|
||||
test -d modules || mkdir modules
|
||||
test -d modules || $php_shtool mkdir modules
|
||||
touch .deps
|
||||
|
||||
AC_CONFIG_HEADER(config.h)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue