[Python-checkins] python/dist/src configure,1.395,1.396 configure.in,1.406,1.407

loewis@users.sourceforge.net loewis@users.sourceforge.net
Sun, 04 May 2003 22:13:21 -0700


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1:/tmp/cvs-serv4882

Modified Files:
	configure configure.in 
Log Message:
Patch #732284: Disable _XOPEN_SOURCE on UnixWare 7.


Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.395
retrieving revision 1.396
diff -C2 -d -r1.395 -r1.396
*** configure	5 May 2003 05:05:26 -0000	1.395
--- configure	5 May 2003 05:13:16 -0000	1.396
***************
*** 1,4 ****
  #! /bin/sh
! # From configure.in Revision: 1.405 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.53 for python 2.3.
--- 1,4 ----
  #! /bin/sh
! # From configure.in Revision: 1.406 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.53 for python 2.3.
***************
*** 1354,1357 ****
--- 1354,1361 ----
    # 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,
+   # but used in struct sockaddr.sa_family. Reported by Tim Rice.
+   OpenUNIX/8.0| UnixWare/7.1.[13])
      define_xopen_source=no;;
  esac

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.406
retrieving revision 1.407
diff -C2 -d -r1.406 -r1.407
*** configure.in	5 May 2003 05:05:30 -0000	1.406
--- configure.in	5 May 2003 05:13:18 -0000	1.407
***************
*** 130,133 ****
--- 130,137 ----
    SunOS/5.6)
      define_xopen_source=no;;
+   # On UnixWare 7, 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@:>@)
+     define_xopen_source=no;;
  esac