summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2009-03-25 07:18:58 +0000
committerTor Lillqvist <tml@src.gnome.org>2009-03-25 07:18:58 +0000
commitd8ea13216c0a647ffd02dc29449327aa151b6f1e (patch)
tree26ed8699be87030805b2eff18beb84da205c6bf9 /modules
parentb6cba0b5424195979ba3c0005120707f91a170d4 (diff)
downloadgtk+-d8ea13216c0a647ffd02dc29449327aa151b6f1e.tar.gz
Bug 575644 - Cygwin gail build patch
2009-03-25 Tor Lillqvist <tml@novell.com> Bug 575644 - Cygwin gail build patch * modules/other/gail/Makefile.am * modules/other/gail/libgail-util/Makefile.am * modules/other/gail/tests/Makefile.am: Use -no-undefined also on Cygwin. Patch from "Cygwin ports maintainer". svn path=/trunk/; revision=22586
Diffstat (limited to 'modules')
-rw-r--r--modules/other/gail/ChangeLog9
-rw-r--r--modules/other/gail/Makefile.am2
-rw-r--r--modules/other/gail/libgail-util/Makefile.am4
-rw-r--r--modules/other/gail/tests/Makefile.am2
4 files changed, 14 insertions, 3 deletions
diff --git a/modules/other/gail/ChangeLog b/modules/other/gail/ChangeLog
index 0ee10f5c58..eea65f1bd1 100644
--- a/modules/other/gail/ChangeLog
+++ b/modules/other/gail/ChangeLog
@@ -1,3 +1,12 @@
+2009-03-25 Tor Lillqvist <tml@novell.com>
+
+ Bug 575644 - Cygwin gail build patch
+
+ * modules/other/gail/Makefile.am
+ * modules/other/gail/libgail-util/Makefile.am
+ * modules/other/gail/tests/Makefile.am: Use -no-undefined also on
+ Cygwin. Patch from "Cygwin ports maintainer".
+
2009-03-13 Matthias Clasen <mclasen@redhat.com>
* === Released 2.16.0 ===
diff --git a/modules/other/gail/Makefile.am b/modules/other/gail/Makefile.am
index a6f875791e..24d0d58ffc 100644
--- a/modules/other/gail/Makefile.am
+++ b/modules/other/gail/Makefile.am
@@ -2,7 +2,7 @@ include $(top_srcdir)/Makefile.decl
SUBDIRS = libgail-util tests
-if OS_WIN32
+if PLATFORM_WIN32
no_undefined = -no-undefined
endif
diff --git a/modules/other/gail/libgail-util/Makefile.am b/modules/other/gail/libgail-util/Makefile.am
index 92ed669a6a..856a6c01a9 100644
--- a/modules/other/gail/libgail-util/Makefile.am
+++ b/modules/other/gail/libgail-util/Makefile.am
@@ -1,9 +1,11 @@
include $(top_srcdir)/Makefile.decl
EXTRA_DIST += gailutil.def
+if PLATFORM_WIN32
+no_undefined = -no-undefined
+endif
if OS_WIN32
export_symbols = -export-symbols $(srcdir)/gailutil.def
-no_undefined = -no-undefined
install-def-file: gailutil.def
$(INSTALL) $(srcdir)/gailutil.def $(DESTDIR)$(libdir)
uninstall-def-file:
diff --git a/modules/other/gail/tests/Makefile.am b/modules/other/gail/tests/Makefile.am
index 8e6a5d5b12..aaa6389396 100644
--- a/modules/other/gail/tests/Makefile.am
+++ b/modules/other/gail/tests/Makefile.am
@@ -1,7 +1,7 @@
## Makefile.am for gtk+/tests
include $(top_srcdir)/Makefile.decl
-if OS_WIN32
+if PLATFORM_WIN32
no_undefined = -no-undefined
endif