diff options
author | Magne Mahre <magne.mahre@oracle.com> | 2011-04-14 10:08:12 +0200 |
---|---|---|
committer | Magne Mahre <magne.mahre@oracle.com> | 2011-04-14 10:08:12 +0200 |
commit | b71c5d51c6d91283fc3d656b70991319dfcc51f7 (patch) | |
tree | 28b6ef23c47ef3c2bd8e443c07eeba55f8a894e5 /config.h.cmake | |
parent | ecd6899338ddc2e208ed4097b6f7e44e99c4ea1b (diff) | |
download | mariadb-git-b71c5d51c6d91283fc3d656b70991319dfcc51f7.tar.gz |
Bug#11766320 MYSQL SYMBOLIC LINKS NOT WORKING
When MySQL converted from autotools to CMake, the
preprocessor symbol USE_SYMDIR was omitted by mistake.
Without this symbol, the code for checking .sym files
is not built.
This patch defines USE_SYMDIR when built on MS Windows.
Diffstat (limited to 'config.h.cmake')
-rw-r--r-- | config.h.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.h.cmake b/config.h.cmake index 25d5a93ad18..fdff4222417 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -510,6 +510,7 @@ #cmakedefine EXTRA_DEBUG 1 #cmakedefine BACKUP_TEST 1 #cmakedefine CYBOZU 1 +#cmakedefine USE_SYMDIR 1 /* Character sets and collations */ #cmakedefine MYSQL_DEFAULT_CHARSET_NAME "@MYSQL_DEFAULT_CHARSET_NAME@" |