[Python-checkins] python/dist/src setup.py,1.156,1.157

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Thu, 20 Mar 2003 19:09:02 -0800


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

Modified Files:
	setup.py 
Log Message:
Get locale module to build on aix4

Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.156
retrieving revision 1.157
diff -C2 -d -r1.156 -r1.157
*** setup.py	20 Mar 2003 23:34:22 -0000	1.156
--- setup.py	21 Mar 2003 03:08:59 -0000	1.157
***************
*** 336,340 ****
              exts.append( Extension('unicodedata', ['unicodedata.c']) )
          # access to ISO C locale support
!         if platform in ['cygwin']:
              locale_libs = ['intl']
          else:
--- 336,340 ----
              exts.append( Extension('unicodedata', ['unicodedata.c']) )
          # access to ISO C locale support
!         if platform in ['cygwin', 'aix4']:
              locale_libs = ['intl']
          else: