]> www.ginac.de Git - cln.git/blobdiff - configure.ac
* configure.ac: Disable shared lib on MinGW.
[cln.git] / configure.ac
index b68a39eec8fa7ffbdf5c8fe151fe55c1ed9c0968..bcaf4150cb6e9c09972f06765fb1104b9d0853d5 100644 (file)
@@ -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
 
@@ -82,7 +90,7 @@ dnl * if any functions/classes have been added, increment CL_AGE,
 dnl * if backwards compatibility has been broken, set CL_AGE to 0.
 dnl $(CL_CURRENT):$(CL_REVISION):$(CL_AGE) results in
 dnl libcln.so.$(CL_CURRENT)-$(CL_AGE)
-CL_CURRENT=4
+CL_CURRENT=5
 CL_REVISION=0
 CL_AGE=0
 dnl make substitutions
@@ -91,8 +99,8 @@ AC_SUBST(CL_REVISION)
 AC_SUBST(CL_AGE)
 dnl release version
 CL_VERSION_MAJOR=1
-CL_VERSION_MINOR=1
-CL_VERSION_PATCHLEVEL=10
+CL_VERSION_MINOR=2
+CL_VERSION_PATCHLEVEL=0
 dnl release version for cln/config.h, so it can be tested by the preprocessor
 AC_DEFINE_UNQUOTED(CL_VERSION_MAJOR, $CL_VERSION_MAJOR)
 AC_DEFINE_UNQUOTED(CL_VERSION_MINOR, $CL_VERSION_MINOR)