forked from pool/muparser
- Update to 2.3.2: * using OpenMP is now the default settings for cmake based builds * added optimization for trivial expressions * introduced a maximum length for expressions (5000 Character) * introduced a maximum length for identifiers (100 Characters) * removed the MUP_MATH_EXCEPTION macro and related functionality * removed ParserStack.h (replaced with std::stack) * removed macros for defining E and PI (replaced with a static constants) * the MUP_ASSERT macro is no longer removed in release builds for better protection against segmentation faults - Updated muparser-abiversion.diff as the project is now using cmake - Removed muparser-optflags.patch as the project is now using cmake and the Makefile.in file no longer exists OBS-URL: https://build.opensuse.org/request/show/815514 OBS-URL: https://build.opensuse.org/package/show/science/muparser?expand=0&rev=25
13 lines
397 B
Diff
13 lines
397 B
Diff
diff -ru a/CMakeLists.txt b/CMakeLists.txt
|
|
--- a/CMakeLists.txt 2020-06-17 10:52:15.574640873 +0200
|
|
+++ b/CMakeLists.txt 2020-06-17 00:09:53.000000000 +0200
|
|
@@ -74,7 +74,7 @@
|
|
endif()
|
|
set_target_properties(muparser PROPERTIES
|
|
VERSION ${MUPARSER_VERSION}
|
|
+ SOVERSION ${MUPARSER_VERSION}
|
|
- SOVERSION ${MUPARSER_VERSION_MAJOR}
|
|
)
|
|
|
|
# Install the export set for use with the install-tree
|