mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-02-17 03:10:38 +00:00
* Use working SRC_URI * Fix to use correct headers and apxs script for cross-compiling * Enable threading * Install headers and scripts for building extension modules * Use proper variables instead of /etc, /usr/lib etc. * Fix rpath QA issues * Add LIC_FILES_CHKSUM * Put apache config file into SRC_URI instead of referring to it using FILESDIR 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>
|