Creo que hice todo bien con la instalación de todas las dependencias para Apache2 y PHP.
Primero instalé un Ubuntu 14.04 limpio con todas las actualizaciones reales. Luego instalé con "apt-get build-dep php5 apache2" las dependencias necesarias.
Después de eso seguí los siguientes pasos:
Para las últimas dependencias:
apt-get install apache2 mysql-client mysql-server php5 libapache2-mod-php5 libxml2-dev libcurl4-openssl-dev libbz2-dev libjpeg-dev libpng-dev libfreetype6-dev libtidy-dev libxslt-dev libmcrypt-dev php5-gd php5-curl libc-client2007e-dev
ln -s /usr/lib/libc-client.a /usr/lib/x86_64-linux-gnu/libc-client.a
(que el proceso de compilación encuentre el archivo libc-client.a)
Finalmente comenzó el proceso de compilación desde el directorio php-5.6.3.
./configure --with-config-file-path=/etc/php5/apache2 --with-pear=/usr/share/php --with-gd --with-mysql --with-mysqli --with-pdo-mysql=/usr --with-curl --disable-debug --with-mhash --with-jpeg-dir=/usr --with-freetype-dir=/usr --with-zlib --with-gettext --with-bz2 --with-mcrypt --with-iconv --enable-soap --with-openssl --enable-mbstring --with-libdir=/lib/x86_64-linux-gnu --enable-ftp --enable-bcmath --with-imap --with-xsl --with-imap-ssl --enable-zip --with-tidy --with-kerberos --enable-calendar --enable-sockets --with-libxml-dir=/usr --with-apxs2
make install
Y luego recibí el siguiente error:
/usr/bin/ld: /usr/lib/x86_64-linux-gnu/libc-client.a(osdep.o): relocation R_X86_64_32 against `.rodata.str1.1' can not be used when making a shared object; recompile with -fPIC
/usr/lib/x86_64-linux-gnu/libc-client.a: error adding symbols: Bad value
collect2: error: ld returned 1 exit status
make: *** [libphp5.la] Fehler 1
Realmente no sé cómo solucionar este problema porque realmente no debería suceder. Todo está instalado limpio y Google tampoco dice nada que pueda ayudar...
Sería genial si alguien aquí pudiera ayudarme :D
Respuesta1
El mensaje de error indica que puede agregar el indicador del compilador -fPIC.
http://jaytaylor.com/blog/2010/10/06/howto-fix-fpic-errors/
En esta página puede encontrar una solución medianamente buena: habilitar PIC para PHP completo.
export CC=”gcc -fPIC”
export CXX=”g++ -fPIC”
Pero no sé qué desventajas tiene esta solución.