Bump to 10.2.x release series which has support for OpenSSL 1.1.x. - libmariadbclient was replaced by libmaria - libmaria uses LGPL, hence license info updated - upstream disabled xtradb engine, innodb is now default (cannot be built as plugin anymore) - complex charsets are now all included (size increase), as otherwise compile fails - patches adapted/refreshed Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
18 lines
587 B
Diff
18 lines
587 B
Diff
--- a/configure.cmake
|
|
+++ b/configure.cmake
|
|
@@ -1018,9 +1018,12 @@ CHECK_STRUCT_HAS_MEMBER("struct sockaddr
|
|
|
|
SET(CMAKE_EXTRA_INCLUDE_FILES)
|
|
|
|
-CHECK_INCLUDE_FILE(ucontext.h HAVE_UCONTEXT_H)
|
|
-IF(NOT HAVE_UCONTEXT_H)
|
|
- CHECK_INCLUDE_FILE(sys/ucontext.h HAVE_UCONTEXT_H)
|
|
+CHECK_INCLUDE_FILE(ucontext.h HAVE_UCONTEXT_HEADER)
|
|
+IF(NOT HAVE_UCONTEXT_HEADER)
|
|
+ CHECK_INCLUDE_FILE(sys/ucontext.h HAVE_UCONTEXT_HEADER)
|
|
+ENDIF()
|
|
+IF(HAVE_UCONTEXT_HEADER)
|
|
+ CHECK_FUNCTION_EXISTS(makecontext HAVE_UCONTEXT_H)
|
|
ENDIF()
|
|
IF(HAVE_UCONTEXT_H)
|
|
CHECK_FUNCTION_EXISTS(makecontext HAVE_UCONTEXT_H)
|