diff --git a/glib-patches/patchlist b/glib-patches/patchlist index e324cbb..e539292 100644 --- a/glib-patches/patchlist +++ b/glib-patches/patchlist @@ -4,3 +4,4 @@ foreign-automake.patch no-gregex.patch no-pkg-config.patch cross-compiling.patch +static-only.patch diff --git a/glib-patches/static-only.patch b/glib-patches/static-only.patch new file mode 100644 index 0000000..6148bd2 --- /dev/null +++ b/glib-patches/static-only.patch @@ -0,0 +1,13 @@ +diff --git a/glib/configure.ac b/glib/configure.ac +index 160f57d..a78d516 100644 +--- a/glib/configure.ac ++++ b/glib/configure.ac +@@ -498,7 +498,7 @@ esac + + dnl Initialize libtool + LT_PREREQ([2.2]) +-LT_INIT([disable-static win32-dll]) ++LT_INIT([disable-shared win32-dll]) + dnl when using libtool 2.x create libtool early, because it's used in configure + m4_ifdef([LT_OUTPUT], [LT_OUTPUT]) + diff --git a/glib/configure.ac b/glib/configure.ac index 160f57d..a78d516 100644 --- a/glib/configure.ac +++ b/glib/configure.ac @@ -498,7 +498,7 @@ esac dnl Initialize libtool LT_PREREQ([2.2]) -LT_INIT([disable-static win32-dll]) +LT_INIT([disable-shared win32-dll]) dnl when using libtool 2.x create libtool early, because it's used in configure m4_ifdef([LT_OUTPUT], [LT_OUTPUT])