attempt to support Win32 (untested).

2005-02-20  Manish Singh  <yosh@gimp.org>

        * plug-ins/pygimp/Makefile.am: attempt to support Win32 (untested).
This commit is contained in:
Manish Singh 2005-02-20 08:14:52 +00:00 committed by Manish Singh
parent 301a49b77c
commit 995f874af8
2 changed files with 11 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2005-02-20 Manish Singh <yosh@gimp.org>
* plug-ins/pygimp/Makefile.am: attempt to support Win32 (untested).
2005-02-19 Manish Singh <yosh@gimp.org>
* plug-ins/pygimp/plug-ins/gtkcons.py

View file

@ -10,6 +10,10 @@ libgimpprocbrowser = $(top_builddir)/plug-ins/dbbrowser/libgimpprocbrowser.la
SUBDIRS = doc plug-ins
if PLATFORM_WIN32
no_undefined = -no-undefined
endif
AM_CFLAGS = $(PYGIMP_EXTRA_CFLAGS)
INCLUDES = -I$(top_srcdir) $(PYTHON_INCLUDES) $(PYGTK_CFLAGS) $(GTK_CFLAGS)
@ -28,7 +32,7 @@ gimpmodule_la_SOURCES = \
pygimp-pdb.c \
pygimp.h
gimpmodule_la_LDFLAGS = -module -avoid-version \
gimpmodule_la_LDFLAGS = -module -avoid-version $(no_undefined) \
-export-symbols-regex 'initgimp|PLUG_IN_INFO'
gimpmodule_la_LIBADD = \
@ -41,7 +45,8 @@ gimpmodule_la_LIBADD = \
gimpprocbrowsermodule_la_SOURCES = \
procbrowser.c
gimpprocbrowsermodule_la_LDFLAGS = -module -avoid-version
gimpprocbrowsermodule_la_LDFLAGS = -module -avoid-version $(no_undefined) \
-export-symbols-regex initgimpprocbrowser
gimpprocbrowsermodule_la_LIBADD = \
$(libgimpprocbrowser) \