|
From: <cho...@us...> - 2003-01-02 14:44:02
|
Update of /cvsroot/pyaros/PyAROS/Objects
In directory sc8-pr-cvs1:/tmp/cvs-serv20847/Objects
Modified Files:
module.make
Log Message:
Disable unicode support when building TINY version.
Index: module.make
===================================================================
RCS file: /cvsroot/pyaros/PyAROS/Objects/module.make,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** module.make 16 Oct 2002 08:02:25 -0000 1.1
--- module.make 2 Jan 2003 14:43:55 -0000 1.2
***************
*** 25,31 ****
tupleobject \
typeobject \
- unicodectype \
- unicodeobject \
weakrefobject
# Don't compile obmalloc unless WITH_PYMALLOC is defined, or we'll crash
--- 25,35 ----
tupleobject \
typeobject \
weakrefobject
+
+ ifeq ($(TINY),no)
+ LOCAL_FILES += \
+ unicodectype \
+ unicodeobject
+ endif
# Don't compile obmalloc unless WITH_PYMALLOC is defined, or we'll crash
|