]> git.lyx.org Git - lyx.git/blobdiff - src/support/chdir.C
MacOSX compile fix.
[lyx.git] / src / support / chdir.C
index d9776e9c6e9572ae82226cc3cc2fea07983683fb..c93fdec9a661be424e3c5424930e03720693cf5d 100644 (file)
 # include <unistd.h>
 #endif
 
+#ifdef _WIN32
+# include <windows.h>
+#endif
+
 int lyx::support::chdir(std::string const & name)
 {
-#ifndef __EMX__
-       return ::chdir(name.c_str());
+#ifdef _WIN32
+       return SetCurrentDirectory(name.c_str()) != 0 ? 0 : -1;
 #else
-       return ::_chdir2(name.c_str());
+       return ::chdir(name.c_str());
 #endif
 }