From: Richard Kreckel Date: Fri, 4 Aug 2006 23:06:37 +0000 (+0000) Subject: * configure.ac: Disable shared lib on MinGW. X-Git-Tag: cln_1-2-0~69 X-Git-Url: https://www.ginac.de/CLN/cln.git//cln.git?a=commitdiff_plain;h=a984aa3fdedaedc36f2f459fafe0379a7ec027d4;p=cln.git * configure.ac: Disable shared lib on MinGW. --- 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