Skip to content
This repository has been archived by the owner on Dec 21, 2019. It is now read-only.

Commit

Permalink
- We build on Mac OS X 10.6 now
Browse files Browse the repository at this point in the history
- We don't build Python 2.3 and 2.4 binaries any longer
  • Loading branch information
ghaering committed Mar 5, 2010
1 parent fcc6249 commit b89b97b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mkwin32.py
Expand Up @@ -13,7 +13,7 @@
# Cross-compiler
if sys.platform == "darwin":
CC = "/usr/local/i386-mingw32-4.3.0/bin/i386-mingw32-gcc"
LIBDIR = "lib.macosx-10.5-i386-2.5"
LIBDIR = "lib.macosx-10.6-i386-2.5"
STRIP = "/usr/local/i386-mingw32-4.3.0/bin/i386-mingw32-gcc --strip-all"
else:
CC = "/usr/bin/i586-mingw32msvc-gcc"
Expand Down Expand Up @@ -65,7 +65,7 @@ def main():
vars = locals()
vars.update(globals())
get_amalgamation()
for ver in ["2.3", "2.4", "2.5", "2.6"]:
for ver in ["2.5", "2.6"]:
execute("rm -rf build")
# First, compile the host version. This is just to get the .py files in place.
execute("python2.5 setup.py build")
Expand Down

0 comments on commit b89b97b

Please sign in to comment.