From: ulf at uclibc.org <ulf@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/package/php
Date: Sun, 19 Aug 2007 14:02:47 -0700 (PDT) [thread overview]
Message-ID: <20070819210247.6532AA5D20@busybox.net> (raw)
Author: ulf
Date: 2007-08-19 14:02:46 -0700 (Sun, 19 Aug 2007)
New Revision: 19566
Log:
Fr?\195?\165n: Brad House <brad@mainstreetsoftworks.com>
Till: buildroot at uclibc.org
?\195?\132mne: [Buildroot] [patch] php fixes and updates
Datum: Tue, 14 Aug 2007 16:39:03 -0400 (22.39 CEST)
Changes:
- fastcgi config option
- force php to find the php.ini in /etc (it seems to default
to /lib for some reason)
- build with posix support, a lot of php scripts require
this apparently
- strip the php binary when installing to TARGET_DIR
- actually 'uninstall' php on a php-clean
-Brad
Modified:
trunk/buildroot/package/php/Config.in
trunk/buildroot/package/php/php.mk
Changeset:
Modified: trunk/buildroot/package/php/Config.in
===================================================================
--- trunk/buildroot/package/php/Config.in 2007-08-19 20:59:37 UTC (rev 19565)
+++ trunk/buildroot/package/php/Config.in 2007-08-19 21:02:46 UTC (rev 19566)
@@ -24,6 +24,13 @@
cgi interface for php
you must have at least cli or cgi selected.
+config BR2_PACKAGE_PHP_FASTCGI
+ bool "fastcgi"
+ depends on BR2_PACKAGE_PHP_CGI
+ default y
+ help
+ fast cgi interface for php
+
config BR2_PACKAGE_PHP_OPENSSL
bool "openssl support"
depends on BR2_PACKAGE_PHP && BR2_PACKAGE_OPENSSL
Modified: trunk/buildroot/package/php/php.mk
===================================================================
--- trunk/buildroot/package/php/php.mk 2007-08-19 20:59:37 UTC (rev 19565)
+++ trunk/buildroot/package/php/php.mk 2007-08-19 21:02:46 UTC (rev 19566)
@@ -19,10 +19,13 @@
endif
ifneq ($(BR2_PACKAGE_PHP_CGI),y)
- PHP_CGI="--disable-cgi"
+ PHP_CGI=--disable-cgi
else
- PHP_CGI="--enable-cgi"
+ PHP_CGI=--enable-cgi
PHP_TARGET_DEPS+=$(TARGET_DIR)/usr/bin/php-cgi
+ ifeq ($(BR2_PACKAGE_PHP_FASTCGI),y)
+ PHP_CGI+=--enable-fastcgi
+ endif
endif
ifeq ($(BR2_PACKAGE_PHP_OPENSSL),y)
@@ -69,6 +72,7 @@
--sbindir=/usr/sbin \
--libexecdir=/usr/lib \
--sysconfdir=/etc \
+ --with-config-file-path=/etc \
--datadir=/usr/share/misc \
--localstatedir=/var \
--mandir=/usr/man \
@@ -77,6 +81,7 @@
--enable-spl \
--enable-session \
--enable-sockets \
+ --enable-posix \
--with-pcre-regex \
--without-pear \
--disable-ipv6 \
@@ -100,10 +105,12 @@
$(TARGET_DIR)/usr/bin/php: $(PHP_DIR)/.staged
cp -dpf $(STAGING_DIR)/usr/bin/php $(TARGET_DIR)/usr/bin/php
chmod 755 $(TARGET_DIR)/usr/bin/php
+ $(STRIP) --strip-unneeded $(TARGET_DIR)/usr/bin/php
$(TARGET_DIR)/usr/bin/php-cgi: $(PHP_DIR)/.staged
cp -dpf $(STAGING_DIR)/usr/bin/php-cgi $(TARGET_DIR)/usr/bin/php-cgi
chmod 755 $(TARGET_DIR)/usr/bin/php-cgi
+ $(STRIP) --strip-unneeded $(TARGET_DIR)/usr/bin/php-cgi
$(TARGET_DIR)/etc/php.ini: $(PHP_DIR)/.staged
cp $(PHP_DIR)/php.ini-dist $(TARGET_DIR)/etc/php.ini
@@ -112,6 +119,9 @@
php-clean:
rm -f $(PHP_DIR)/.configured $(PHP_DIR)/.built $(PHP_DIR)/.staged
+ rm -f $(TARGET_DIR)/usr/bin/php $(TARGET_DIR)/usr/bin/php-cgi
+ rm -f $(STAGING_DIR)/usr/bin/php* $(STAGING_DIR)/usr/man/man1/php*
+ rm -rf $(STAGING_DIR)/usr/include/php
-$(MAKE) -C $(PHP_DIR) clean
php-dirclean:
next reply other threads:[~2007-08-19 21:02 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-19 21:02 ulf at uclibc.org [this message]
-- strict thread matches above, loose matches on Subject: below --
2008-03-06 18:21 [Buildroot] svn commit: trunk/buildroot/package/php ninevoltz at uclibc.org
2008-03-11 18:14 ninevoltz at uclibc.org
2008-03-25 8:49 jacmet at uclibc.org
2008-06-01 18:04 antab at uclibc.org
2008-06-01 19:31 ` Peter Korsgaard
2008-06-02 12:11 ` Peter Korsgaard
2008-06-02 13:15 ` Gustavo Zacarias
2008-06-01 19:42 antab at uclibc.org
2008-06-16 9:49 jacmet at uclibc.org
2008-12-13 11:01 tpetazzoni at uclibc.org
2009-01-11 20:08 ulf at uclibc.org
2009-01-25 20:59 ulf at uclibc.org
2009-02-20 15:13 jacmet at uclibc.org
2009-02-20 21:55 jacmet at uclibc.org
2009-02-21 9:06 jacmet at uclibc.org
2009-02-21 9:06 jacmet at uclibc.org
2009-02-25 19:51 jacmet at uclibc.org
2009-03-02 19:05 jacmet at uclibc.org
2009-03-04 20:58 jacmet at uclibc.org
2009-03-04 20:58 jacmet at uclibc.org
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070819210247.6532AA5D20@busybox.net \
--to=ulf@uclibc.org \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox