diff options
author | Daniel Black <daniel@linux.vnet.ibm.com> | 2018-03-15 15:48:26 +1100 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2018-05-21 16:34:10 +0000 |
commit | 2534ae20fd244eed569830bb7159518e42f24baa (patch) | |
tree | f20e29d4d3e970e069acc135e8b87c75e7d7126e /configure.cmake | |
parent | 8307fb23bd5646568044cb75abc5e505c47d312a (diff) | |
download | mariadb-git-2534ae20fd244eed569830bb7159518e42f24baa.tar.gz |
MDEV-15583 create_temp_file: remove tempnam implementation
In the spirit of the man page "Never use this function."
lets purge off this implementation. mkstemp is a widely
available alternative.
Closes #661.
Diffstat (limited to 'configure.cmake')
-rw-r--r-- | configure.cmake | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/configure.cmake b/configure.cmake index 17f31206975..8a83e46488e 100644 --- a/configure.cmake +++ b/configure.cmake @@ -413,7 +413,6 @@ CHECK_FUNCTION_EXISTS (strtoul HAVE_STRTOUL) CHECK_FUNCTION_EXISTS (strtoull HAVE_STRTOULL) CHECK_FUNCTION_EXISTS (strcasecmp HAVE_STRCASECMP) CHECK_FUNCTION_EXISTS (tell HAVE_TELL) -CHECK_FUNCTION_EXISTS (tempnam HAVE_TEMPNAM) CHECK_FUNCTION_EXISTS (thr_setconcurrency HAVE_THR_SETCONCURRENCY) CHECK_FUNCTION_EXISTS (thr_yield HAVE_THR_YIELD) CHECK_FUNCTION_EXISTS (vasprintf HAVE_VASPRINTF) |