diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2003-05-11 05:53:41 +0000 |
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2003-05-11 05:53:41 +0000 |
| commit | c2409b4f5a9158bd11999c5c210c7533e576dc42 (patch) | |
| tree | 7a806b522dd8f899e936a23a3af4012aaa5c83fe | |
| parent | 8f53cdcfce23ba20869742d889d4dae7fc76a2cb (diff) | |
| download | cpython-git-c2409b4f5a9158bd11999c5c210c7533e576dc42.tar.gz | |
Update patch #732284: Correct versions of OpenUNIX, UnixWare, add OpenServer.
| -rwxr-xr-x | configure | 10 | ||||
| -rw-r--r-- | configure.in | 8 |
2 files changed, 13 insertions, 5 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.407 . +# From configure.in Revision: 1.408 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.53 for python 2.3. # @@ -1354,9 +1354,13 @@ case $ac_sys_system/$ac_sys_release in # of union __?sigval. Reported by Stuart Bishop. SunOS/5.6) define_xopen_source=no;; - # On UnixWare 7, u_short is never defined with _XOPEN_SOURCE, + # 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]) + 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. - OpenUNIX/8.0| UnixWare/7.1.[13]) + SCO_SV/3.2) define_xopen_source=no;; esac diff --git a/configure.in b/configure.in index 3e37381ab8..3f164571c5 100644 --- a/configure.in +++ b/configure.in @@ -129,9 +129,13 @@ case $ac_sys_system/$ac_sys_release in # of union __?sigval. Reported by Stuart Bishop. SunOS/5.6) define_xopen_source=no;; - # On UnixWare 7, u_short is never defined with _XOPEN_SOURCE, + # 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@:>@) + 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. - OpenUNIX/8.0| UnixWare/7.1.@<:@13@:>@) + SCO_SV/3.2) define_xopen_source=no;; esac |
