[Python-checkins] CVS: python/dist/src acconfig.h,1.52,1.53 pyconfig.h.in,1.7,1.8

Martin v. L?wis loewis@users.sourceforge.net
Wed, 05 Sep 2001 08:18:02 -0700


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv23090

Modified Files:
	acconfig.h pyconfig.h.in 
Log Message:
Move UnixWare 7 defines to acconfig.h, regenerate pyconfig.h.in.


Index: acconfig.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/acconfig.h,v
retrieving revision 1.52
retrieving revision 1.53
diff -C2 -d -r1.52 -r1.53
*** acconfig.h	2001/09/05 14:58:11	1.52
--- acconfig.h	2001/09/05 15:18:00	1.53
***************
*** 243,244 ****
--- 243,252 ----
  #endif
  #endif
+ 
+ /* Define the macros needed if on a UnixWare 7.x system. */
+ #if defined(__USLC__) && defined(__SCO_VERSION__)
+ #define SCO_ACCEPT_BUG     /* Use workaround for UnixWare accept() bug */
+ #define SCO_ATAN2_BUG      /* Use workaround for UnixWare atan2() bug */
+ #define STRICT_SYSV_CURSES /* Don't use ncurses extensions */
+ #endif
+ 

Index: pyconfig.h.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/pyconfig.h.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** pyconfig.h.in	2001/09/05 14:58:11	1.7
--- pyconfig.h.in	2001/09/05 15:18:00	1.8
***************
*** 723,724 ****
--- 723,732 ----
  #endif
  #endif
+ 
+ /* Define the macros needed if on a UnixWare 7.x system. */
+ #if defined(__USLC__) && defined(__SCO_VERSION__)
+ #define SCO_ACCEPT_BUG     /* Use workaround for UnixWare accept() bug */
+ #define SCO_ATAN2_BUG      /* Use workaround for UnixWare atan2() bug */
+ #define STRICT_SYSV_CURSES /* Don't use ncurses extensions */
+ #endif
+