]> git.lyx.org Git - lyx.git/blobdiff - src/support/tempname.C
hopefully fix tex2lyx linking.
[lyx.git] / src / support / tempname.C
index 54833b5b47d28b41dda8a588bcee8795fc9978ec..3f3c6e222c330aaade4e4646fa778735b37f9287 100644 (file)
@@ -21,6 +21,7 @@
 #include <boost/scoped_array.hpp>
 
 #include <cstdlib>
+
 #ifdef HAVE_UNISTD_H
 # include <unistd.h>
 #endif
@@ -43,6 +44,8 @@ using boost::scoped_array;
 using std::string;
 using std::endl;
 
+namespace lyx {
+
 namespace {
 
 inline
@@ -54,6 +57,10 @@ int make_tempfile(char * templ)
        // This probably just barely works...
        ::mktemp(templ);
 # if defined (HAVE_OPEN)
+# if (!defined S_IRUSR)
+#   define S_IRUSR S_IREAD
+#   define S_IWUSR S_IWRITE
+# endif
        return ::open(templ, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
 # elif defined (HAVE__OPEN)
        return ::_open(templ,
@@ -96,7 +103,7 @@ string const lyx::support::tempName(string const & dir, string const & mask)
 #elif defined (HAVE__CLOSE)
                ::_close(tmpf);
 #else
-# error No close() function.
+# error No x() function.
 #endif
                lyxerr[Debug::FILES] << "Temporary file `" << t
                                     << "' created." << endl;
@@ -108,3 +115,6 @@ string const lyx::support::tempName(string const & dir, string const & mask)
                return string();
        }
 }
+
+
+} // namespace lyx