mirror of
https://github.com/MariaDB/server.git
synced 2026-04-26 18:25:30 +02:00
5.5 merge
This commit is contained in:
commit
d3e2e1243b
1865 changed files with 92783 additions and 80381 deletions
|
|
@ -1,5 +1,5 @@
|
|||
# Copyright (c) 2006, 2013, Oracle and/or its affiliates.
|
||||
# Copyright (c) 2008, 2013, Monty Program Ab
|
||||
# Copyright (c) 2006, 2014, Oracle and/or its affiliates.
|
||||
# Copyright (c) 2008, 2014, Monty Program Ab
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
|
|
@ -331,14 +331,15 @@ IF(INSTALL_SYSCONFDIR)
|
|||
SET(DEFAULT_SYSCONFDIR "${INSTALL_SYSCONFDIR}")
|
||||
ENDIF()
|
||||
|
||||
OPTION(TMPDIR
|
||||
"PATH to MySQL TMP dir. If unspecified, defaults to P_tmpdir in <stdio.h>" OFF)
|
||||
IF(TMPDIR)
|
||||
SET(TMPDIR ""
|
||||
CACHE PATH
|
||||
"PATH to MySQL TMP dir. Defaults to the P_tmpdir macro in <stdio.h>")
|
||||
IF(TMPDIR STREQUAL "")
|
||||
# Do not quote it, to refer to the P_tmpdir macro.
|
||||
SET(DEFAULT_TMPDIR "P_tmpdir")
|
||||
ELSE()
|
||||
# Quote it, to make it a const char string.
|
||||
SET(DEFAULT_TMPDIR "\"${TMPDIR}\"")
|
||||
ELSE()
|
||||
# Do not quote it, to refer to the P_tmpdir macro in <stdio.h>.
|
||||
SET(DEFAULT_TMPDIR "P_tmpdir")
|
||||
ENDIF()
|
||||
|
||||
# Run platform tests
|
||||
|
|
@ -387,11 +388,13 @@ IF(WITH_UNIT_TESTS)
|
|||
ADD_SUBDIRECTORY(unittest/examples)
|
||||
ADD_SUBDIRECTORY(unittest/mysys)
|
||||
ADD_SUBDIRECTORY(unittest/my_decimal)
|
||||
ADD_SUBDIRECTORY(unittest/sql)
|
||||
IF(NOT WITHOUT_SERVER)
|
||||
ADD_SUBDIRECTORY(unittest/sql)
|
||||
ENDIF()
|
||||
ENDIF()
|
||||
|
||||
IF(NOT WITHOUT_SERVER)
|
||||
SET (MYSQLD_STATIC_PLUGIN_LIBS "" CACHE INTERNAL "")
|
||||
SET (MYSQLD_STATIC_PLUGIN_LIBS "" CACHE INTERNAL "")
|
||||
# Add storage engines and plugins.
|
||||
CONFIGURE_PLUGINS()
|
||||
ENDIF()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue