summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric Gustin <cedric.gustin@swing.be>2005-06-10 06:07:43 +0000
committerCedric Gustin <gustin@src.gnome.org>2005-06-10 06:07:43 +0000
commit8ae4d94a1c2aeee77ed21d71c00ab28dc9dea920 (patch)
tree7b8a8bed78844837cd5bca4a839af4a7e8daa717
parenta8dc3dcbe5391c4353397c21ce6c1d06b857dd0d (diff)
downloadpygtk-8ae4d94a1c2aeee77ed21d71c00ab28dc9dea920.tar.gz
Define HAVE_BIND_TEXTDOMAIN_CODESET on win32.
2005-06-09 Cedric Gustin <cedric.gustin@swing.be> * setup.py : Define HAVE_BIND_TEXTDOMAIN_CODESET on win32.
-rw-r--r--ChangeLog4
-rwxr-xr-xsetup.py1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 436419b6..20bb1694 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-06-09 Cedric Gustin <cedric.gustin@swing.be>
+
+ * setup.py : Define HAVE_BIND_TEXTDOMAIN_CODESET on win32.
+
2005-05-22 Tim Evans <t.evans@aranz.com>
* gtk/gtktreeview.override
diff --git a/setup.py b/setup.py
index f5f5c202..a99f0405 100755
--- a/setup.py
+++ b/setup.py
@@ -52,6 +52,7 @@ GLOBAL_MACROS += [('PYGTK_MAJOR_VERSION', MAJOR_VERSION),
if sys.platform == 'win32':
GLOBAL_MACROS.append(('VERSION', '\\\"%s\\\"' % VERSION))
GLOBAL_MACROS.append(('PLATFORM_WIN32',1))
+ GLOBAL_MACROS.append(('HAVE_BIND_TEXTDOMAIN_CODESET',1))
else:
GLOBAL_MACROS.append(('VERSION', '"%s"' % VERSION))