php neu kompilieren

startupboy

Grünschnabel
Hi,
ich versuche mein PHP5 neu zu kompilieren... das klappt auch ohne Fehlermeldung, wenn ich dann aber den Apache neu starte sind eine Änderungen im php_info() nicht zu finden?!

was mache ich falsch...

meine php_info():
Code:
Configure Command 	 
'./configure' '--prefix=/usr' '--datadir=/usr/share/php' 
'--mandir=/usr/share/man' '--bindir=/usr/bin' 
'--libdir=/usr/share' '--includedir=/usr/include' 
'--sysconfdir=/etc' '--with-_lib=lib' '--with-config-file-path=/etc' '--with-exec-dir=/usr/lib/php/bin' '--disable-debug' 
'--enable-inline-optimization' '--enable-memory-limit' 
'--enable-magic-quotes' '--disable-safe-mode' 
'--enable-sigchild' '--disable-ctype' '--enable-session' 
'--with-mysql' '--disable-cli' '--without-pear' 
'--with-openssl' '--with-apxs2=/usr/sbin/apxs2-prefork'

Und mein configure-String schaut so aus:

Code:
'./configure' '--prefix=/usr' '--datadir=/usr/share/php' 
'--mandir=/usr/share/man' '--bindir=/usr/bin' 
'--libdir=/usr/share' '--includedir=/usr/include' 
'--sysconfdir=/etc' '--with-_lib=lib' 
'--with-config-file-path=/etc' '--with-exec-dir=/usr/lib/php/bin' 
'--disable-debug' '--enable-inline-optimization' 
'--enable-memory-limit' '--enable-force-cgi-redirect' 
'--enable-track-vars' '--with-mysql=/usr' '--without-pear' 
'--enable-session' '--without-sqlite' '--enable-exif' 
'--with-bz2--enable-calendar' '--with-cpdflib' 
'--enable-bcmath' '--with-curl' '--with-curlwrappers' 
'--enable-dba' '--enable-dbase' '--enable-dbx'
 '--enable-exif' '--with-freetype-dir=/usr/lib/' 
'--enable-ftp' '--with-jpeg-dir=/usr/lib/' '--with-zlib' 
'--with-gd' '--with-gettext' '--enable-gd-jis-conv' 
'--enable-gd-native-ttf' '--enable-libxml' 
'--enable-magic-quotes' '--enable-mbstr-enc-trans' 
'--enable-mbstring=all' '--with-mcrypt' 
'--enable-memory-limit' '--with-mime-magic' 
'--with-openssl' '--with-png' '--enable-simplexml' 
'--with-regex' '--enable-soap' '--enable-sqlite-utf8' 
'--with-swf' '--with-ttf' '--with-xml'

Was mache ich falsch das ich keine Änderungen zu sehen bekomme?!
 
Zuletzt bearbeitet:
Hallo nochmal...
Nach langem Suchen habe ich die Lösung gefunden...

An das Ende des configure-Strings musste noch ein '--with-apxs2=/usr/sbin/apxs2-prefork' gehängt werden :)
 
Zurück