|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2002-08-10 09:56 UTC] kalowsky@php.net
  [2002-10-22 07:55 UTC] michael dot viorney at laposte dot net
  [2002-10-22 08:31 UTC] michael dot viorney at laposte dot net
  [2003-04-02 06:33 UTC] kapil at numen dot biz
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Sun Oct 26 23:00:02 2025 UTC | 
I'm tring to build php 4.0.6 from SRPM whit apache 1.3.22 under AIX 5.1 whit Toolbox GNU utilities. (Apache is correctly running with dso support :) httpd -l http_core.c mod_so.c I cannot create a DSO module with this configuration in my SPEC file : ./configure \ --prefix=%{prefix} \ --disable-debug \ --enable-track-vars \ --enable-magic-quotes \ --with-apxs=/httpd/sbin/apxs \ --with-mysql=/opt/freeware \ --with-config-file-path=/etc/opt/freeware/apache \ --with-zlib \ --enable-bcmath \ --with-gd=/opt/freeware \ --with-ttf=/opt/freeware \ --with-jpeg-dir=/opt/freeware \ --with-imap=/usr1/src/imap \ --with-xml \ --with-ftp \ %if %{SSL} == 1 --with-ssl %endif During the make install phase i get this error : +cd - /opt/freeware/src/packages/BUILD/php-4.0.6 + cp -p acconfig.h php_version.h /var/opt/freeware/tmp/php-root/opt/freeware/include/php + mkdir -p /var/opt/freeware/tmp/php-root/opt/freeware/apache/libexec + cp .libs/libphp4.so.0 /var/opt/freeware/tmp/php-root/opt/freeware/apache/libexec/libphp4.so cp: .libs/libphp4.so.0: No such file or directory Bad exit status from /var/opt/freeware/tmp/rpm-tmp.30732 (%install) In effects I don't have the library .... I noted that in the php directory there is a file called ltconfig that contains : ltconfig I found : # See if GNU ld supports shared libraries. case "$host_os" in aix3* | aix4*) # On AIX, the GNU linker is very broken ld_shlibs=no cat <<EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. EOF ;; Is this assertion true ? I use gcc 2.9-aix43-010216 from Aix Toolbox Thanks in advance