mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-20 00:52:01 +00:00
Build the mod_php Apache module within the main php recipe; this avoids
files in the sysroot from stepping on eachother and therefore avoids the
resulting build failure.
Changes made:
* Add an "apache2" PACKAGECONFIG, default disabled. This means that if
you previously used the modphp recipe you now need to set
PACKAGECONFIG for php to include "apache2".
* Bring in most patches and configure options from the modphp recipe.
* Specify ${libdir}/php5 as libdir. This avoids the PHP extensions
directory being /usr/lib/extensions by default which is ugly.
* Tidy up some superfluous/malformed entries in FILES_${PN}-pear
* Drop obsolete PHP_MAJVER
* Replace virtclass- override with class-
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
13 lines
375 B
ApacheConf
13 lines
375 B
ApacheConf
# vim: ft=apache sw=4 ts=4
|
|
<IfDefine PHP5>
|
|
# Load the module first
|
|
<IfModule !sapi_apache2.c>
|
|
LoadModule php5_module lib/apache2/modules/libphp5.so
|
|
</IfModule>
|
|
|
|
# Set it to handle the files
|
|
AddHandler php5-script .php .phtml .php3 .php4 .php5
|
|
AddType application/x-httpd-php-source .phps
|
|
DirectoryIndex index.html index.html.var index.php index.phtml
|
|
</IfDefine>
|