]> git.lyx.org Git - lyx.git/blobdiff - src/support/systemcall.C
Fix several filename and environment variable encoding problems
[lyx.git] / src / support / systemcall.C
index 600dbdb0168b693aebc0a9f86fcc2ed76cdd72bd..b879ba4ae5891c80bc3b5a1ebdb9f5bf809de199 100644 (file)
@@ -1,25 +1,31 @@
 /**
- *  \file systemcall.C
- *  Copyright 2002 the LyX Team
- *  Read the file COPYING
+ * \file systemcall.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Asger Alstrup
  *
  * Interface cleaned up by
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
-#include "systemcall.h"
-#include "os.h"
+#include "support/systemcall.h"
+#include "support/os.h"
 
 #include <cstdlib>
 
+using std::string;
+
+#ifndef CXX_GLOBAL_CSTD
+using std::system;
+#endif
+
+namespace lyx {
+namespace support {
 
 // Reuse of instance
 int Systemcall::startscript(Starttype how, string const & what)
@@ -27,12 +33,18 @@ int Systemcall::startscript(Starttype how, string const & what)
        string command = what;
 
        if (how == DontWait) {
-               if (os::shell() == os::UNIX) {
+               switch (os::shell()) {
+               case os::UNIX:
                        command += " &";
-               } else {
-                       command = "start /min/n " + command;
+                       break;
+               case os::CMD_EXE:
+                       command = "start /min " + command;
+                       break;
                }
        }
 
        return ::system(command.c_str());
 }
+
+} // namespace support
+} // namespace lyx