diff options
author | Georg Brandl <georg@python.org> | 2008-01-07 18:10:24 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-07 18:10:24 (GMT) |
commit | 52d168a9950cc0933b6f650e5fdebfad13347e88 (patch) | |
tree | 513a176653aeddee22e0d0b3571360b7d4cc21a4 /Makefile.pre.in | |
parent | 22ec03c286094298227b2068fa02bcafedf76860 (diff) | |
download | cpython-52d168a9950cc0933b6f650e5fdebfad13347e88.zip cpython-52d168a9950cc0933b6f650e5fdebfad13347e88.tar.gz cpython-52d168a9950cc0933b6f650e5fdebfad13347e88.tar.bz2 |
Remove traces of Py_USING_UNICODE and Unicode-specific conditionals in configure.
Rename --enable-unicode to --with-wide-unicode; the default is still not wide.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 2379fdd..d762185 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -171,7 +171,6 @@ DYNLOADFILE= @DYNLOADFILE@ MACHDEP_OBJS= @MACHDEP_OBJS@ LIBOBJDIR= Python/ LIBOBJS= @LIBOBJS@ -UNICODE_OBJS= @UNICODE_OBJS@ PYTHON= python$(EXE) BUILDPYTHON= python$(BUILDEXE) @@ -320,8 +319,9 @@ OBJECT_OBJS= \ Objects/structseq.o \ Objects/tupleobject.o \ Objects/typeobject.o \ - Objects/weakrefobject.o \ - $(UNICODE_OBJS) + Objects/unicodeobject.o \ + Objects/unicodectype.o \ + Objects/weakrefobject.o ########################################################################## |