summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-07-14 17:27:24 +0000
committerTor Lillqvist <tml@src.gnome.org>2005-07-14 17:27:24 +0000
commit66f25564159d4040cc1070b136f7ee547316ba7e (patch)
tree50b7f0a6d8835860a32c42d33530dd2399bd10ea /configure.in
parentf1dd819cfed8a0ac466e1f0d2b2de26d7b2e2bf8 (diff)
downloadgdk-pixbuf-66f25564159d4040cc1070b136f7ee547316ba7e.tar.gz
Don't need -luuid on Win32. It was some leftover, and in fact occasionally
2005-07-14 Tor Lillqvist <tml@novell.com> * configure.in (GDK_EXTRA_LIBS): Don't need -luuid on Win32. It was some leftover, and in fact occasionally caused issues with libtool as it made its way into the libgdk-win32-2.0.la file and that way into the .la files of all libraries that depend on GDK. (This happened only when building from CVS and not using a full "make install" which would run the sanitize-la.sh script.)
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 36b885974..b1b02b748 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"
AM_CONDITIONAL(USE_WIN32, true)
else
AM_CONDITIONAL(USE_WIN32, false)