forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixed bug: php#13561 (--without-pear prevents install of phpize, ph…
…p-config)
- Loading branch information
foobar
committed
Jan 28, 2003
1 parent
41d6e9a
commit 20c4328
Showing
12 changed files
with
98 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
|
||
# | ||
# Build environment install | ||
# | ||
|
||
phpincludedir = $(includedir)/php | ||
phpbuilddir = $(prefix)/lib/php/build | ||
|
||
BUILD_FILES = \ | ||
scripts/phpize.m4 \ | ||
build/mkdep.awk \ | ||
build/shtool \ | ||
Makefile.global \ | ||
scan_makefile_in.awk \ | ||
acinclude.m4 | ||
|
||
bin_SCRIPTS = phpize php-config | ||
bin_src_SCRIPTS = phpextdist | ||
|
||
install-build: | ||
@echo "Installing build environment: $(INSTALL_ROOT)$(phpbuilddir)/" | ||
@$(mkinstalldirs) $(INSTALL_ROOT)$(phpbuilddir) $(INSTALL_ROOT)$(bindir) && \ | ||
(cd $(top_srcdir) && cp $(BUILD_FILES) $(INSTALL_ROOT)$(phpbuilddir)) | ||
|
||
HEADER_DIRS = \ | ||
/ \ | ||
Zend \ | ||
TSRM \ | ||
ext/standard \ | ||
ext/session \ | ||
ext/xml \ | ||
ext/xml/expat \ | ||
main \ | ||
ext/mbstring \ | ||
ext/pgsql \ | ||
regex | ||
|
||
install-headers: | ||
-@for i in $(HEADER_DIRS); do \ | ||
paths="$$paths $(INSTALL_ROOT)$(phpincludedir)/$$i"; \ | ||
done; \ | ||
$(mkinstalldirs) $$paths && \ | ||
echo "Installing header files: $(INSTALL_ROOT)$(phpincludedir)/" && \ | ||
for i in $(HEADER_DIRS); do \ | ||
(cd $(top_srcdir)/$$i && cp -p *.h $(INSTALL_ROOT)$(phpincludedir)/$$i; \ | ||
cd $(top_builddir)/$$i && cp -p *.h $(INSTALL_ROOT)$(phpincludedir)/$$i) 2>/dev/null || true; \ | ||
done; \ | ||
cd $(top_srcdir)/sapi/embed && cp -p *.h $(INSTALL_ROOT)$(phpincludedir)/main | ||
|
||
install-programs: | ||
@echo "Installing helper programs: $(INSTALL_ROOT)$(bindir)/" | ||
@for prog in $(bin_SCRIPTS); do \ | ||
echo " program: $$prog"; \ | ||
$(INSTALL) -m 755 $(builddir)/$$prog $(INSTALL_ROOT)$(bindir)/$$prog; \ | ||
done | ||
@for prog in $(bin_src_SCRIPTS); do \ | ||
echo " program: $$prog"; \ | ||
$(INSTALL) -m 755 $(top_srcdir)/scripts/$$prog $(INSTALL_ROOT)$(bindir)/$$prog; \ | ||
done | ||
|
||
$(builddir)/phpize: $(srcdir)/phpize.in $(top_builddir)/config.status | ||
(CONFIG_FILES=$@ CONFIG_HEADERS= $(top_builddir)/config.status) | ||
|
||
$(builddir)/php-config: $(srcdir)/php-config.in $(top_builddir)/config.status | ||
(CONFIG_FILES=$@ CONFIG_HEADERS= $(top_builddir)/config.status) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.