From 6e8350d42097d8683c9d64be19dff9ab9805bb0a Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Sat, 31 May 2008 20:20:56 +0000 Subject: set FFI_LIBS to '', since this is mostly used on win32. 2008-05-31 Johan Dahlin * setup.py: set FFI_LIBS to '', since this is mostly used on win32. svn path=/trunk/; revision=786 --- ChangeLog | 4 ++++ setup.py | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 3fcba94..a4068d1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-05-31 Johan Dahlin + + * setup.py: set FFI_LIBS to '', since this is mostly used on win32. + 2008-05-30 Gustavo J. A. M. Carneiro * gobject/gobjectmodule.c (init_gobject): Call PyType_Ready for diff --git a/setup.py b/setup.py index 31cad8e..b367c6a 100755 --- a/setup.py +++ b/setup.py @@ -90,6 +90,7 @@ class PyGObjectInstallLib(InstallLib): class PyGObjectInstallData(InstallData): def run(self): self.add_template_option('VERSION', VERSION) + self.add_template_option('FFI_LIBS', '') self.prepare() # Install templates -- cgit