Commit 75c2cc45 authored by Tor Didriksen's avatar Tor Didriksen

Bug#16316074 RFE: MAKE TMPDIR A BUILD-TIME CONFIGURABLE OPTION

Bug#68338    RFE: make tmpdir a build-time configurable option

Post-push fix: windows needs DEFAULT_TMPDIR as well.
parent 3d6c77bf
...@@ -329,17 +329,15 @@ IF(SYSCONFDIR) ...@@ -329,17 +329,15 @@ IF(SYSCONFDIR)
SET(DEFAULT_SYSCONFDIR "${SYSCONFDIR}") SET(DEFAULT_SYSCONFDIR "${SYSCONFDIR}")
ENDIF() ENDIF()
IF(UNIX) SET(TMPDIR "P_tmpdir"
SET(TMPDIR "P_tmpdir" CACHE PATH
CACHE PATH "PATH to MySQL TMP dir. Defaults to the P_tmpdir macro in <stdio.h>")
"PATH to MySQL TMP dir. Defaults to the P_tmpdir macro in <stdio.h>") IF(TMPDIR STREQUAL "P_tmpdir")
IF(TMPDIR STREQUAL "P_tmpdir") # Do not quote it, to refer to the P_tmpdir macro.
# Do not quote it, to refer to the P_tmpdir macro. SET(DEFAULT_TMPDIR "P_tmpdir")
SET(DEFAULT_TMPDIR "P_tmpdir") ELSE()
ELSE() # Quote it, to make it a const char string.
# Quote it, to make it a const char string. SET(DEFAULT_TMPDIR "\"${TMPDIR}\"")
SET(DEFAULT_TMPDIR "\"${TMPDIR}\"")
ENDIF()
ENDIF() ENDIF()
# Run platform tests # Run platform tests
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment