Made the HP-UX patch more specific as if affected AIX builds (from Jeff Hobbs)
authorpatthoyts <patthoyts>
Wed, 31 Jan 2007 13:23:09 +0000 (13:23 +0000)
committerpatthoyts <patthoyts>
Wed, 31 Jan 2007 13:23:09 +0000 (13:23 +0000)
ChangeLog
generic/udp_tcl.c

index fb87f9222debc4f5bccafadcc5848beb3ede4017..b9a0d918854a6a40b4408772f6f8e30ce695136a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-01-31  Pat Thoyts  <patthoyts@users.sourceforge.net>
+
+       * generic/udp_tcl.c: Turns out the HP-UX patch break buiding on
+       AIX so made the check more specific (from Jeff Hobbs again).
+
 2007-01-21  Pat Thoyts  <patthoyts@users.sourceforge.net>
 
        * generic/udp_tcl.c: Applied HP-UX patch #1639930 from tclguy.
index 5c367d621cabe785542862d7e75b93e45425ff89..05a84a07e1daa56b48cec2dc8ba4ad33b03473a9 100644 (file)
@@ -46,7 +46,7 @@ typedef int socklen_t;
 #define IP_TTL 4
 #endif
 
-#ifdef _XOPEN_SOURCE_EXTENDED
+#if defined(_XOPEN_SOURCE_EXTENDED) && defined(__hpux)
 /*
  * This won't get defined on HP-UX if _XOPEN_SOURCE_EXTENDED is defined,
  * but we need it and TEA causes this macro to be defined.