diff options
author | Tor Lillqvist <tml@novell.com> | 2009-03-25 07:18:58 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2009-03-25 07:18:58 +0000 |
commit | d8ea13216c0a647ffd02dc29449327aa151b6f1e (patch) | |
tree | 26ed8699be87030805b2eff18beb84da205c6bf9 | |
parent | b6cba0b5424195979ba3c0005120707f91a170d4 (diff) | |
download | gdk-pixbuf-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
-rw-r--r-- | modules/other/gail/ChangeLog | 9 | ||||
-rw-r--r-- | modules/other/gail/Makefile.am | 2 | ||||
-rw-r--r-- | modules/other/gail/libgail-util/Makefile.am | 4 | ||||
-rw-r--r-- | modules/other/gail/tests/Makefile.am | 2 |
4 files changed, 14 insertions, 3 deletions
diff --git a/modules/other/gail/ChangeLog b/modules/other/gail/ChangeLog index 0ee10f5c5..eea65f1bd 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 a6f875791..24d0d58ff 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 92ed669a6..856a6c01a 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 8e6a5d5b1..aaa638939 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 |