diff options
author | Tor Lillqvist <tml@iki.fi> | 2003-03-02 02:00:50 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2003-03-02 02:00:50 +0000 |
commit | 45e99b52b1408d5b32f8497dca5e01968dd06ae0 (patch) | |
tree | 10849a814368d3ff6f32aa28d7ea24e82ef73235 | |
parent | 656db08e101a9a86865e458513ff2f98f2b1228d (diff) | |
download | gtk+-45e99b52b1408d5b32f8497dca5e01968dd06ae0.tar.gz |
Call AC_LIBTOOL_WIN32_DLL. Set OS_WIN32 conditional on Windows.
2003-03-02 Tor Lillqvist <tml@iki.fi>
* configure.in: Call AC_LIBTOOL_WIN32_DLL. Set OS_WIN32
conditional on Windows.
* makefile.cygwin: Remove, unmaintained and obsolete.
* Makefile.am (EXTRA_DIST): Remove here, too.
* README.win32: Update.
pixbuf:
2003-03-02 Tor Lillqvist <tml@iki.fi>
* Makefile.am: Use -no-undefined on Windows.
metal and redmond95:
2003-03-02 Tor Lillqvist <tml@iki.fi>
* Makefile.am: Use -no-undefined, and do use GTK_LIBS on Windows.
-rw-r--r-- | modules/engines/pixbuf/ChangeLog | 4 | ||||
-rw-r--r-- | modules/engines/pixbuf/Makefile.am | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/modules/engines/pixbuf/ChangeLog b/modules/engines/pixbuf/ChangeLog index 0b2ab8dded..f2e5d10118 100644 --- a/modules/engines/pixbuf/ChangeLog +++ b/modules/engines/pixbuf/ChangeLog @@ -1,3 +1,7 @@ +2003-03-02 Tor Lillqvist <tml@iki.fi> + + * Makefile.am: Use -no-undefined on Windows. + Fri Sep 6 20:32:45 2002 Owen Taylor <otaylor@redhat.com> * pixbuf-draw.c: Account for the possibility of detail == NULL diff --git a/modules/engines/pixbuf/Makefile.am b/modules/engines/pixbuf/Makefile.am index 9a0ded4b0f..27ebd8e37b 100644 --- a/modules/engines/pixbuf/Makefile.am +++ b/modules/engines/pixbuf/Makefile.am @@ -1,3 +1,7 @@ +if OS_WIN32 +no_undefined = -no-undefined +endif + INCLUDES = $(GTK_CFLAGS) enginedir = $(libdir)/gtk-2.0/$(GTK_VERSION)/engines @@ -13,7 +17,7 @@ libpixmap_la_SOURCES = \ pixbuf-style.h \ pixbuf.h -libpixmap_la_LDFLAGS = -avoid-version -module +libpixmap_la_LDFLAGS = -avoid-version -module $(no_undefined) libpixmap_la_LIBADD = $(GTK_LIBS) dist-hook: |