]> git.lyx.org Git - lyx.git/blobdiff - src/support/forkedcall.C
hopefully fix tex2lyx linking.
[lyx.git] / src / support / forkedcall.C
index 66bb45d2212348d098f87ccee614fc95433577f7..e1d5ef50cfd04655cc54f83479cc4438c06fda5c 100644 (file)
@@ -38,6 +38,7 @@
 #include <boost/bind.hpp>
 
 #include <vector>
+#include <cerrno>
 
 #ifdef _WIN32
 # define SIGHUP 1
@@ -46,7 +47,6 @@
 # include <windows.h>
 
 #else
-# include <cerrno>
 # include <csignal>
 # include <cstdlib>
 # ifdef HAVE_UNISTD_H
@@ -361,11 +361,8 @@ int Forkedcall::generateChild()
                lyxerr << "</command>" << std::endl;
        }
 
-#if defined (__EMX__)
-       pid_t const cpid = spawnvp(P_SESSION|P_DEFAULT|P_MINIMIZE|P_BACKGROUND,
-                                  argv[0], &*argv.begin());
-#elif defined (_WIN32)
-       pid_t const cpid = spawnvp(_P_NOWAIT, argv[0], &*argv.begin());
+#ifdef _WIN32
+       pid_t const cpid = spawnvp(_P_NOWAIT, argv[0], &*argv.begin());
 #else // POSIX
        pid_t const cpid = ::fork();
        if (cpid == 0) {