diff options
author | Matthias Clasen <mclasen@redhat.com> | 2007-07-09 18:00:22 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2007-07-09 18:00:22 +0000 |
commit | 2f6e6f2eede861cac2c0e906d3ee57c2e9d5ef0b (patch) | |
tree | e17bff3f3473bcd269260358e15d8d3f016468fb /modules | |
parent | 5c327ecbe573c60de2265a9622e569fd52943768 (diff) | |
download | gtk+-2f6e6f2eede861cac2c0e906d3ee57c2e9d5ef0b.tar.gz |
Fix build problems on Cygwin. (#448604)
2007-07-09 Matthias Clasen <mclasen@redhat.com>
* modules/printbackends/*/Makefile.am: Fix build problems
on Cygwin. (#448604)
svn path=/trunk/; revision=18412
Diffstat (limited to 'modules')
-rw-r--r-- | modules/printbackends/cups/Makefile.am | 7 | ||||
-rw-r--r-- | modules/printbackends/file/Makefile.am | 3 | ||||
-rw-r--r-- | modules/printbackends/lpr/Makefile.am | 2 | ||||
-rw-r--r-- | modules/printbackends/test/Makefile.am | 2 |
4 files changed, 8 insertions, 6 deletions
diff --git a/modules/printbackends/cups/Makefile.am b/modules/printbackends/cups/Makefile.am index e768c5bd47..9b179a1e0b 100644 --- a/modules/printbackends/cups/Makefile.am +++ b/modules/printbackends/cups/Makefile.am @@ -1,4 +1,4 @@ -if OS_WIN32 +if PLATFORM_WIN32 no_undefined = -no-undefined endif @@ -14,8 +14,9 @@ INCLUDES = \ $(GTK_DEBUG_FLAGS) LDADDS = \ - $(GTK_DEP_LIBS) \ - $(top_builddir)/gtk/$(gtktargetlib) + $(top_builddir)/gtk/$(gtktargetlib) \ + $(top_builddir)/gdk/$(gdktargetlib) \ + $(GTK_DEP_LIBS) backenddir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/printbackends diff --git a/modules/printbackends/file/Makefile.am b/modules/printbackends/file/Makefile.am index b74bdc369f..1afee74ca4 100644 --- a/modules/printbackends/file/Makefile.am +++ b/modules/printbackends/file/Makefile.am @@ -1,4 +1,4 @@ -if OS_WIN32 +if PLATFORM_WIN32 no_undefined = -no-undefined endif @@ -27,6 +27,7 @@ libprintbackend_file_la_LDFLAGS = \ libprintbackend_file_la_LIBADD = \ $(top_builddir)/gtk/$(gtktargetlib) \ + $(top_builddir)/gdk/$(gdktargetlib) \ $(GTK_DEP_LIBS) noinst_HEADERS = \ diff --git a/modules/printbackends/lpr/Makefile.am b/modules/printbackends/lpr/Makefile.am index 305399c20f..a207e01fdb 100644 --- a/modules/printbackends/lpr/Makefile.am +++ b/modules/printbackends/lpr/Makefile.am @@ -1,4 +1,4 @@ -if OS_WIN32 +if PLATFORM_WIN32 no_undefined = -no-undefined endif diff --git a/modules/printbackends/test/Makefile.am b/modules/printbackends/test/Makefile.am index cbbfd60348..e023dc8186 100644 --- a/modules/printbackends/test/Makefile.am +++ b/modules/printbackends/test/Makefile.am @@ -1,4 +1,4 @@ -if OS_WIN32 +if PLATFORM_WIN32 no_undefined = -no-undefined endif |