]> git.mxchange.org Git - simgear.git/commitdiff
Use mkdtemp where available, avoiding linker warnings about dangerous tempnam
authorJames Turner <zakalawe@mac.com>
Sat, 15 Oct 2011 01:06:35 +0000 (02:06 +0100)
committerJames Turner <zakalawe@mac.com>
Sat, 15 Oct 2011 01:06:35 +0000 (02:06 +0100)
CMakeLists.txt
simgear/misc/sg_dir.cxx
simgear/simgear_config_cmake.h.in

index 7e2e8ebe780b5b4125beb17fed860f50c1ee9d93..922d653ff86fca7b49cf322f65c9b6f31cb8fa10 100644 (file)
@@ -130,7 +130,7 @@ check_function_exists(gettimeofday HAVE_GETTIMEOFDAY)
 check_function_exists(ftime HAVE_FTIME)
 check_function_exists(timegm HAVE_TIMEGM)
 check_function_exists(rint HAVE_RINT)
-
+check_function_exists(mkdtemp HAVE_MKDTEMP)
 
 if(HAVE_UNISTD_H)
     set(CMAKE_REQUIRED_INCLUDES ${CMAKE_INCLUDE_PATH})
index e1a2610f3c42e12e3c33d04a604380aa1252285a..95f9949d9893e55800f69c706c27a5d9cb5caef2 100644 (file)
@@ -18,6 +18,9 @@
 //
 // $Id$
 
+#ifdef HAVE_CONFIG_H
+#  include <simgear_config.h>
+#endif
 
 #include <simgear/misc/sg_dir.hxx>
 
@@ -74,6 +77,22 @@ Dir Dir::current()
 
 Dir Dir::tempDir(const std::string& templ)
 {
+#ifdef HAVE_MKDTEMP
+    char buf[1024];
+    char* tempPath = ::getenv("TMPDIR");
+    if (!tempPath) {
+        tempPath = "/tmp/";
+    }
+    // Mac OS-X / BSD manual says any number of 'X's, but GLibc manual
+    // says exactly six, so that's what I'm going with
+    ::snprintf(buf, 1024, "%s%s-XXXXXX", tempPath, templ.c_str());
+    if (!mkdtemp(buf)) {
+        SG_LOG(SG_IO, SG_WARN, "mkdtemp failed:" << strerror(errno));
+        return Dir();
+    }
+    
+    return Dir(SGPath(buf));
+#else
     SGPath p(tempnam(0, templ.c_str()));
     Dir t(p);
     if (!t.create(0700)) {
@@ -81,6 +100,7 @@ Dir Dir::tempDir(const std::string& templ)
     }
     
     return t;
+#endif
 }
 
 PathList Dir::children(int types, const std::string& nameFilter) const
index bfb4b1b916619db7efaf7288a3311cedf20e0ed9..3d132306340aa413509da72223d816deb3f93f41 100644 (file)
@@ -11,6 +11,7 @@
 #cmakedefine HAVE_TIMEGM
 #cmakedefine HAVE_ISNAN
 #cmakedefine HAVE_WINDOWS_H
+#cmakedefine HAVE_MKDTEMP
 
 #cmakedefine HAVE_SVN_CLIENT_H
 #cmakedefine HAVE_LIBSVN_CLIENT_1