Browse Source

* configure.ac: Disable shared lib on MinGW.

master
Richard Kreckel 19 years ago
parent
commit
a984aa3fde
  1. 4
      ChangeLog
  2. 8
      configure.ac

4
ChangeLog

@ -1,3 +1,7 @@
2006-08-04 Sheplyakov Alexei <varg@theor.jinr.ru>
* configure.ac: Disable shared lib on MinGW.
2006-08-03 Sheplyakov Alexei <varg@theor.jinr.ru>
* m4/param.m4: Add support for MinGW.

8
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

Loading…
Cancel
Save