[KoCo-CVS] [Commit] KoreanCodecs setup.py
Brought to you by:
perky
From: Chang <pe...@us...> - 2002-04-28 22:15:41
|
perky 02/04/27 23:54:11 Modified: . setup.py Log: - Fix unlimited access on boundary problem on readline_finalize - Let python.c.euc_kr uses _koco.StreamReader as stream reader Revision Changes Path 1.19 +2 -3 KoreanCodecs/setup.py Index: setup.py =================================================================== RCS file: /cvsroot/koco/KoreanCodecs/setup.py,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- setup.py 27 Apr 2002 04:48:36 -0000 1.18 +++ setup.py 28 Apr 2002 06:54:11 -0000 1.19 @@ -1,5 +1,5 @@ #!/usr/bin/env python -# $Id: setup.py,v 1.18 2002/04/27 04:48:36 perky Exp $ +# $Id: setup.py,v 1.19 2002/04/28 06:54:11 perky Exp $ import sys from distutils.core import setup, Extension @@ -20,7 +20,7 @@ class Install(install): def initialize_options (self): install.initialize_options(self) - if with_aliases: + if flavors['aliases']: if sys.hexversion >= '0x2010000': self.extra_path = ("korean", "import korean.aliases") else: @@ -51,5 +51,4 @@ ext_modules = flavors['extension'] and [ Extension("korean.c._koco", ["src/_koco.c"]), Extension("korean.c.hangul", ["src/hangul.c"]), - Extension("korean.c.twobytestream", ["src/twobytestream.c"]), ] or []) |