From: Florian Fainelli Date: Wed, 28 Feb 2007 16:20:55 +0000 (+0000) Subject: Fix php4 compilation error with utsrelease structure #1422 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=0d29b0f05761595f4771a874faec5d6fac2063cc Fix php4 compilation error with utsrelease structure #1422 SVN-Revision: 6432 --- diff --git a/lang/php4/patches/04-uts_domainname.patch b/lang/php4/patches/04-uts_domainname.patch new file mode 100644 index 0000000000..c7a312231f --- /dev/null +++ b/lang/php4/patches/04-uts_domainname.patch @@ -0,0 +1,12 @@ +diff -urN php-4.3.11/ext/posix/posix.c php-4.3.11.new/ext/posix/posix.c +--- php-4.3.11/ext/posix/posix.c 2005-01-28 02:39:42.000000000 +0100 ++++ php-4.3.11.new/ext/posix/posix.c 2007-02-28 17:11:34.000000000 +0100 +@@ -533,7 +533,7 @@ + add_assoc_string(return_value, "version", u.version, 1); + add_assoc_string(return_value, "machine", u.machine, 1); + #ifdef _GNU_SOURCE +- add_assoc_string(return_value, "domainname", u.domainname, 1); ++ add_assoc_string(return_value, "domainname", u.__domainname, 1); + #endif + } + /* }}} */