summaryrefslogtreecommitdiff
path: root/package/php
AgeCommit message (Collapse)Author
2009-03-05php: touch post-install stamp filePeter Korsgaard
2009-03-04php: only overwrite php.ini if not present in target_skeletonPeter Korsgaard
Allow platforms to provide a custom php.ini in their target_skeleton.
2009-03-04php: convert to Makefile.autotools.in and other improvementsPeter Korsgaard
Patch by Gustavo Zacarias <gustavo@zacarias.com.ar> Closes #5, #77, #141 and #143. * Migrate php package to Makefile.autotools.in * Make PCRE regex an option (previously forced on) * Add calendar option from bug #77 * Add external sqlite3 option from bug #141 New option BR2_PACKAGE_PHP_PDO_SQLITE_EXTERNAL * Add alternate php.ini configuration option from bug #5 Named BR2_PACKAGE_PHP_CONFIG and defaults to shipped config. In most scenarios the shipped config isn't good enough, it has a high memory limit for embedded for example. * Changed some options from depends to select Namely openssl, libxml2, zlib, gettext, gmp. * Disabled some 'y' defaults to make things lighter by default Namely libxml2, sqlite, pdo and pdo_sqlite. * Made some of the extensions help text more verbose
2009-03-02php: bump versionPeter Korsgaard
Fixes Fixes CVE-2008-5498, closes #137. Patch by Gustavo Zacarias <gustavo@zacarias.com.ar>
2009-02-25php: Config.ext is in a BR2_PACKAGE_PHP conditional, so get rid of dependsPeter Korsgaard
Hunks missing from r25406.
2009-02-21php: Config.ext is in a BR2_PACKAGE_PHP conditional, so get rid of dependsPeter Korsgaard
2009-02-21php: fix sqlite modulePeter Korsgaard
- php comes with it's own embedded sqlite, so no need to select sqlite - disable largefile support for !BR2_LARGEFILE - php somehow forgets to link with -ldl, breaking the sqlite extension. Fix it by disabling the (unused?) modload support in sqlite.
2009-02-20php: use alternative download URL so we can use DOWNLOAD macroPeter Korsgaard
As noted by Solar on IRC.
2009-02-20php: don't use DOWNLOAD macroPeter Korsgaard
php.net only offers downloads though a strange php script with the file name embedded in the *MIDDLE* of the URL, which isn't compatible with the DOWNLOAD macro. Fix it by reverting php.mk hunk of r24689 to go back to $(WGET). This ofcourse means that the primary site / fallback mirror stuff isn't used.
2009-01-30readline: s/BR2_READLINE/BR2_PACKAGE_READLINE/Peter Korsgaard
Package configs should start with BR2_PACKAGE_.
2009-01-25Fix spelling error, causing php to use host includes, add patching and ↵Ulf Samuelsson
unpacked targets
2009-01-16package/: convert to DOWNLOAD helperPeter Korsgaard
2009-01-11Bump php version since source is removed due to security riskUlf Samuelsson
2008-12-13Bump PHP version to 5.2.7.Thomas Petazzoni
Patch provided by Gustavo Zacarias <gustavo@zacarias.com.ar>. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2008-12-08package/: get rid of unneeded $(strip ..)Peter Korsgaard
2008-08-04buildroot: remove trailing spacesPeter Korsgaard
for i in `find -name 'Config*' -o -name 'Makefile*' -o -name '*.mk'`; do sed -i 's/ \+$//' $i; done
2008-07-17Kconfig: remove 'default n'Peter Korsgaard
'default n' is the default, so there's no need to say it explicitly.
2008-06-16php: fix s/EXIT/EXT/ typo in simplexml selectPeter Korsgaard
2008-06-01Add missing dependsArnar Mar Sigurðsson
2008-06-01Dump php to version 5.2.6 and add SimpleXML extension to config menuArnar Mar Sigurðsson
2008-03-25php: hide extensions menu if not enabledPeter Korsgaard
2008-03-11fixes for php makefileJohn Voltz
2008-03-06enhancements for phpJohn Voltz
2007-10-01- just use the strip binary to avoid confusing libtool (quotes)Bernhard Reutner-Fischer
- use $(STRIPCMD) in packages to avoid clashes with $(STRIP)
2007-08-22- fix unpacking the tarballs, minor cleanups while at it.Bernhard Reutner-Fischer
2007-08-21- sed -i -e "/;$/s/;$//g" $(egrep ";$" package/* package/*/*.mk toolchain/* ↵Bernhard Reutner-Fischer
toolchain/*/*.mk */Makefile.in -l)
2007-08-21Remove switches if sstrip is runUlf Samuelsson
2007-08-19Från: Brad House <brad@mainstreetsoftworks.com>Ulf Samuelsson
Till: buildroot@uclibc.org Ämne: [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
2007-08-07Add php packageUlf Samuelsson