diff options
author | Tor Lillqvist <tml@novell.com> | 2005-07-18 15:20:28 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-07-18 15:20:28 +0000 |
commit | 80d2565d1c9409618eedc4654ce55e96e14f5b10 (patch) | |
tree | 456e00e9ac45c4dc138983a44e7b1f408b317f81 /configure.in | |
parent | a8b97834de14aa6363370de094321215481936bb (diff) | |
download | gtk+-80d2565d1c9409618eedc4654ce55e96e14f5b10.tar.gz |
[Win32] Bypass libtool, use -Wl,-luuid. This avoids a libtool warning as
2005-07-18 Tor Lillqvist <tml@novell.com>
* configure.in (GDK_EXTRA_LIBS): [Win32] Bypass libtool, use
-Wl,-luuid. This avoids a libtool warning as libuuid is static.
* gdk/win32/gdkgc-win32.c (gdk_win32_hdc_get): Be sure to remove
any possible leftover clipping region in the DC if we don't want
any clipping. Thanks to Robert Ă–gren. (#309823)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 3c9b86c20b..c87b44a1e0 100644 --- a/configure.in +++ b/configure.in @@ -1366,7 +1366,7 @@ if test "x$gdktarget" = "xwin32"; then AC_SUBST(GDK_WIN32_EXTRA_CFLAGS) fi - GDK_EXTRA_LIBS="$GDK_EXTRA_LIBS -lgdi32 -user32 -limm32 -lshell32 -lole32 -luuid" + GDK_EXTRA_LIBS="$GDK_EXTRA_LIBS -lgdi32 -user32 -limm32 -lshell32 -lole32 -Wl,-luuid" AM_CONDITIONAL(USE_WIN32, true) else AM_CONDITIONAL(USE_WIN32, false) |