- Update to version 1.2.0
* A new version of the connection generator interface has been
introduced. The new version of the interface is accessible in
the namespace V2_0.
- Correct package name for libpy(3)neurosim, it is *not* a
binding, but a support library for nesting Python 3 connection
generators.
- Add use_system_ltdl.patch
OBS-URL: https://build.opensuse.org/request/show/955442
OBS-URL: https://build.opensuse.org/package/show/science/libneurosim?expand=0&rev=3
34 lines
904 B
Diff
34 lines
904 B
Diff
diff --git a/Makefile.am b/Makefile.am
|
|
index 949fd86..ec32d47 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -1,3 +1,3 @@
|
|
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
-SUBDIRS = libltdl neurosim libpyneurosim
|
|
+SUBDIRS = neurosim libpyneurosim
|
|
diff --git a/configure.ac b/configure.ac
|
|
index c0cda78..85db57f 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -203,10 +203,8 @@ CXXFLAGS=
|
|
NS_SET_LDFLAGS
|
|
LDFLAGS=
|
|
|
|
-LT_PATH_LD
|
|
-LT_CONFIG_LTDL_DIR([libltdl])
|
|
-_LTDL_CONVENIENCE ## put libltdl into a convenience library
|
|
LT_INIT([dlopen]) ## use libtool
|
|
+LTDL_INIT
|
|
m4_pattern_allow([LT_LIBEXT]) ## supress false positive message by autoconf
|
|
|
|
if test "x$BUILD_SHARED" != xno ; then
|
|
@@ -215,7 +213,6 @@ if test "x$BUILD_SHARED" != xno ; then
|
|
fi
|
|
fi
|
|
|
|
-AC_CONFIG_SUBDIRS(libltdl) ## also configure subdir containing libltdl
|
|
AC_PROG_LIBTOOL
|
|
|
|
#-- Set the language to C++
|