summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Donnelly <mingw.android@gmail.com>2016-01-09 17:22:17 +0000
committerIgnacio Casal Quinteiro <icq@gnome.org>2016-01-12 21:32:58 +0100
commit45ffca79d47e2ad57d6325b08c03ba26e67dea76 (patch)
tree49680846f02c301632902b7e7ab9914593d0867f
parentac21f6f9ecdf3b69efbdda9f6748bbefb4d00966 (diff)
downloadgdk-pixbuf-45ffca79d47e2ad57d6325b08c03ba26e67dea76.tar.gz
More of bug 733137 - Don't force no static builds on Win32
And also: https://github.com/Alexpux/MINGW-packages/issues/987 From reading recent discussions, I believe static initiailizers are handled OK now on all MSVC versions and MinGW-w64 GCC never had any problems. So there is no need to avoid static libraries globally (though avoiding them globally was never appropriate!) https://bugzilla.gnome.org/show_bug.cgi?id=760369
-rw-r--r--configure.ac11
1 files changed, 0 insertions, 11 deletions
diff --git a/configure.ac b/configure.ac
index 0e1654f20..a3f078118 100644
--- a/configure.ac
+++ b/configure.ac
@@ -136,17 +136,6 @@ case $host in
;;
esac
-if test "$os_win32" = "yes"; then
- if test x$enable_static = xyes -o x$enable_static = x; then
- AC_MSG_WARN([Disabling static library build, must build as DLL on Windows.])
- enable_static=no
- fi
- if test x$enable_shared = xno; then
- AC_MSG_WARN([Enabling shared library build, must build as DLL on Windows.])
- fi
- enable_shared=yes
-fi
-
dnl Initialize libtool
LT_PREREQ([2.2.6])
LT_INIT([disable-static win32-dll])