Browse Source

php: Properly introduced the FPM patch for PHP.

user/amery/mess
Nagy Károly Gábriel 14 years ago
parent
commit
4401ff6b82
4 changed files with 33696 additions and 1 deletions
  1. +5
    -0
      develop/php/config.hlp
  2. +2
    -0
      develop/php/config.in
  3. +33674
    -0
      develop/php/php-5.2.11-fpm-0.5.13.diff
  4. +15
    -1
      develop/php/php.conf

+ 5
- 0
develop/php/config.hlp

@ -2,6 +2,7 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../php/config.hlp
# Copyright (C) 2010 The OpenSDE Project
# Copyright (C) 2004 - 2006 The T2 SDE Project
# Copyright (C) 1998 - 2003 Clifford Wolf
#
@ -20,3 +21,7 @@ SDECFG_PKG_PHP_FORCESHARED
Please check here if you want to use shared libraries instead of
PHP's built-in support for various applications.
SDECFG_PKG_PHP_FPM
Please check this if you want to apply the FPM patch which is
intended to build in PHP spawn-fcgi capabilities and other goodies.

+ 2
- 0
develop/php/config.in

@ -2,6 +2,7 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../php/config.in
# Copyright (C) 2010 The OpenSDE Project
# Copyright (C) 2004 - 2006 The T2 SDE Project
# Copyright (C) 1998 - 2003 Clifford Wolf
#
@ -16,6 +17,7 @@
if pkgcheck php X ; then
menu_begin MENU_PKG_PHP 'PHP Package Options'
bool 'Force usage of shared modules' SDECFG_PKG_PHP_FORCESHARED 0
bool 'Enable FPM patch ' SDECFG_PKG_PHP_FPM 0
text 'Extra configure options' SDECFG_PKG_PHP_EXTRACONFOPT ''
menu_end
fi

+ 33674
- 0
develop/php/php-5.2.11-fpm-0.5.13.diff
File diff suppressed because it is too large
View File


+ 15
- 1
develop/php/php.conf

@ -2,7 +2,7 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../php/php.conf
# Copyright (C) 2006 - 2008 The OpenSDE Project
# Copyright (C) 2006 - 2010 The OpenSDE Project
# Copyright (C) 2004 - 2006 The T2 SDE Project
# Copyright (C) 1998 - 2003 Clifford Wolf
#
@ -25,6 +25,9 @@ var_append confopt ' ' "--with-libdir=${libdir##*/}"
# global php.ini goes into sysconfdir
var_append confopt ' ' "--with-config-file-path=$sysconfdir"
# sockets does not need any external lib. We have to enable it explicitly
var_append confopt ' ' "--enable-sockets"
if pkginstalled apache; then
pkgprefix -t apache
var_append extraconfopt " " "--with-apxs2=$( pkgprefix sbindir apache )/apxs"
@ -98,6 +101,17 @@ if [ "$SDECFG_PKG_PHP_EXTRACONFOPT" ]; then
var_append extraconfopt " " "$SDECFG_PKG_PHP_EXTRACONFOPT"
fi
if [ "$SDECFG_PKG_PHP_FPM" ]; then
var_append extraconfopt " " "--enable-fpm"
fi
fpm_patch() {
if [ "$SDECFG_PKG_PHP_FPM" ]; then
var_append patchfiles "$confdir/php-5.2.11-fpm-0.5.13.diff"
fi
}
hook_add prepatch 5 'fpm_patch'
hook_add postmake 5 'cp php.ini-* $root$docdir'
# HACK ALERT

Loading…
Cancel
Save