From: Martin v. Löwis Date: Fri, 7 May 2004 19:13:47 +0000 (+0000) Subject: Record UnixWare 7.1.4 as broken. Fixes #929689. X-Git-Tag: v2.3.4c1~32 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5ea315bbdde027515664b9e795ebcc0118593e46;p=thirdparty%2FPython%2Fcpython.git Record UnixWare 7.1.4 as broken. Fixes #929689. --- diff --git a/Misc/NEWS b/Misc/NEWS index 9fa7b9b79107..8c3f56cef98d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -78,6 +78,11 @@ Windows a powerful set of user interface components that expands the capabilities of your Tcl/Tk and Python applications. +Build +----- + +- Bug #929689: Don't define _XOPEN_SOURCE on UnixWare 7.1.4. + What's New in Python 2.3.3 (final)? =================================== diff --git a/configure b/configure index 59a463fd1ce3..da89218cffcd 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.427.4.11 . +# From configure.in Revision: 1.427.4.12 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.57 for python 2.3. # @@ -1446,7 +1446,8 @@ case $ac_sys_system/$ac_sys_release in define_xopen_source=no;; # On UnixWare 7, u_long is never defined with _XOPEN_SOURCE, # but used in /usr/include/netinet/tcp.h. Reported by Tim Rice. - OpenUNIX/8.0.0| UnixWare/7.1.[0-3]) + # Reconfirmed for 7.1.4 by Martin v. Loewis. + OpenUNIX/8.0.0| UnixWare/7.1.[0-4]) define_xopen_source=no;; # On OpenServer 5, u_short is never defined with _XOPEN_SOURCE, # but used in struct sockaddr.sa_family. Reported by Tim Rice. diff --git a/configure.in b/configure.in index 77aa5897fbc2..a9ea12635e71 100644 --- a/configure.in +++ b/configure.in @@ -144,7 +144,8 @@ case $ac_sys_system/$ac_sys_release in define_xopen_source=no;; # On UnixWare 7, u_long is never defined with _XOPEN_SOURCE, # but used in /usr/include/netinet/tcp.h. Reported by Tim Rice. - OpenUNIX/8.0.0| UnixWare/7.1.@<:@0-3@:>@) + # Reconfirmed for 7.1.4 by Martin v. Loewis. + OpenUNIX/8.0.0| UnixWare/7.1.@<:@0-4@:>@) define_xopen_source=no;; # On OpenServer 5, u_short is never defined with _XOPEN_SOURCE, # but used in struct sockaddr.sa_family. Reported by Tim Rice.