Fix php4 compilation error with utsrelease structure #1422
authorFlorian Fainelli <florian@openwrt.org>
Wed, 28 Feb 2007 16:20:55 +0000 (16:20 +0000)
committerFlorian Fainelli <florian@openwrt.org>
Wed, 28 Feb 2007 16:20:55 +0000 (16:20 +0000)
SVN-Revision: 6432

lang/php4/patches/04-uts_domainname.patch [new file with mode: 0644]

diff --git a/lang/php4/patches/04-uts_domainname.patch b/lang/php4/patches/04-uts_domainname.patch
new file mode 100644 (file)
index 0000000..c7a3122
--- /dev/null
@@ -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
+ }
+ /* }}} */