20855207 Python 2.6 gethostname patch needed for 2.7 and 3.4 s11-update
authorJohn Beck <John.Beck@Oracle.COM>
Wed, 08 Apr 2015 19:11:50 -0700
branchs11-update
changeset 4100 8aea711f849c
parent 4098 19376bf84775
child 4101 8fdc3fbc764b
20855207 Python 2.6 gethostname patch needed for 2.7 and 3.4
components/python/python27/patches/24-gethostname.patch
components/python/python34/patches/24-gethostname.patch
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/python/python27/patches/24-gethostname.patch	Wed Apr 08 19:11:50 2015 -0700
@@ -0,0 +1,17 @@
+This patch was adapted from a 2.6 patch which came from upstream:
+http://bugs.python.org/issue19561
+
+--- Python-2.7.9/Include/pyport.h.orig	2014-12-10 07:59:32.000000000 -0800
++++ Python-2.7.9/Include/pyport.h	2015-04-08 18:38:02.450233799 -0700
+@@ -640,11 +640,6 @@
+ in platform-specific #ifdefs.
+ **************************************************************************/
+ 
+-#ifdef SOLARIS
+-/* Unchecked */
+-extern int gethostname(char *, int);
+-#endif
+-
+ #ifdef __BEOS__
+ /* Unchecked */
+ /* It's in the libs, but not the headers... - [cjh] */
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/python/python34/patches/24-gethostname.patch	Wed Apr 08 19:11:50 2015 -0700
@@ -0,0 +1,17 @@
+This patch was adapted from a 2.6 patch which came from upstream:
+http://bugs.python.org/issue19561
+
+--- Python-3.4.3/Include/pyport.h.orig	2015-02-25 03:27:44.000000000 -0800
++++ Python-3.4.3/Include/pyport.h	2015-04-08 18:43:40.698253587 -0700
+@@ -643,11 +643,6 @@
+ in platform-specific #ifdefs.
+ **************************************************************************/
+ 
+-#ifdef SOLARIS
+-/* Unchecked */
+-extern int gethostname(char *, int);
+-#endif
+-
+ #ifdef HAVE__GETPTY
+ #include <sys/types.h>          /* we need to import mode_t */
+ extern char * _getpty(int *, int, mode_t, int);