MacOS X Server Security Update 2010-001 is not PHP neutral on 10.5.x Server, either
I just noticed on my 10.5 server that it installs PHP 5.2.11 over your custom installation for 10.5 boxes. See here for more info.
I had one minor problem when installing 5.2.12 on my 10.5.8 box, and that is because of a gripe caused by multiple conflicting values in some header files which are both pulled in for the build. If you have this problem, it’ll look like this:
In file included from /usr/include/arpa/nameser.h:59,
from /Users/admin/Installed/php-5.2.12/ext/standard/dns.c:62:
/usr/include/arpa/nameser8_compat.h:304: error: conflicting types for 'HEADER'
/usr/include/arpa/nameser_compat.h:99: error: previous declaration of 'HEADER' was here
In file included from /usr/include/arpa/nameser.h:59,
from /Users/admin/Installed/php-5.2.12/ext/standard/dns.c:62:
/usr/include/arpa/nameser8_compat.h:304: error: conflicting types for 'HEADER'
/usr/include/arpa/nameser_compat.h:99: error: previous declaration of 'HEADER' was here
In file included from /usr/include/arpa/nameser.h:59,
from /Users/admin/Installed/php-5.2.12/ext/standard/dns.c:62:
/usr/include/arpa/nameser8_compat.h:304: error: conflicting types for 'HEADER'
/usr/include/arpa/nameser_compat.h:99: error: previous declaration of 'HEADER' was here
In file included from /usr/include/arpa/nameser.h:59,
from /Users/admin/Installed/php-5.2.12/ext/standard/dns.c:62:
/usr/include/arpa/nameser8_compat.h:304: error: conflicting types for 'HEADER'
/usr/include/arpa/nameser_compat.h:99: error: previous declaration of 'HEADER' was here
lipo: can't open input file: /var/tmp//ccqI3ov4.out (No such file or directory)
make: *** [ext/standard/dns.lo] Error 1
To rectify that problem, create a file called patchfile
and paste the following text into it.
*** ext/standard/dns.c 2009-10-16 18:09:49.000000000 +0200
--- ext/standard/dns.c 2009-12-17 18:10:55.000000000 +0100
***************
*** 56,63 ****
--- 56,65 ----
#undef T_UNSPEC
#endif
#if HAVE_ARPA_NAMESER_COMPAT_H
+ #ifndef HAVE_ARPA_NAMESER_H
#include <arpa/nameser_compat.h>
#endif
+ #endif
#if HAVE_ARPA_NAMESER_H
#include <arpa/nameser.h>
#endif
(I got the code above from this bug filed on php.net.)
Then do patch <patchfile
followed by the usual configure/make/make install cycle described in this post (for example). You should be back in business.
Recent Comments