summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2013-08-17 17:20:09 +0400
committerSergei Golubchik <sergii@pisem.net>2013-08-17 17:20:09 +0400
commitc06eaf21b78093524e1a39c55415d4eab3d2cd78 (patch)
tree0b0e1ed3d8c1e877f2e66651cf999b5af5e64975 /include
parent758b012ff23597faa099a2f9562a54f1bae2cca6 (diff)
downloadmariadb-git-c06eaf21b78093524e1a39c55415d4eab3d2cd78.tar.gz
MDEV-4165 [PATCH] RFE: make tmpdir a build-time configurable option
support -DTMPDIR=/path in CMakeLists.txt Patch by Honza Horak.
Diffstat (limited to 'include')
-rw-r--r--include/my_global.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/my_global.h b/include/my_global.h
index 2f42349b265..2f097847c89 100644
--- a/include/my_global.h
+++ b/include/my_global.h
@@ -1515,4 +1515,11 @@ static inline double rint(double x)
#endif /* EMBEDDED_LIBRARY */
+/*
+ Define default tmpdir if not already set.
+*/
+#if !defined(DEFAULT_TMPDIR)
+#define DEFAULT_TMPDIR P_tmpdir
+#endif
+
#endif /* my_global_h */