diff --git a/ChangeLog b/ChangeLog index d67a5d4..7a5c488 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-08-04 Sheplyakov Alexei + + * configure.ac: Disable shared lib on MinGW. + 2006-08-03 Sheplyakov Alexei * m4/param.m4: Add support for MinGW. diff --git a/configure.ac b/configure.ac index 37ebf1d..bcaf415 100644 --- a/configure.ac +++ b/configure.ac @@ -69,6 +69,14 @@ dnl check for build configuration dnl PACKAGE=cln dnl libtool wants PACKAGE +case $host_os in + *mingw*) + AC_DISABLE_SHARED + dnl Shared libraries are not supported on some platforms [yet] + ;; + *) + ;; +esac AC_PROG_LIBTOOL dnl sets variable LIBTOOL