From 3ca61475fb14e8c082a9d277f0e433d9cb4af9a0 Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Fri, 28 Oct 2011 14:07:49 -0500 Subject: FbRun.cc: Fix on windows where there is no fork --- util/fbrun/FbRun.cc | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/util/fbrun/FbRun.cc b/util/fbrun/FbRun.cc index 2843cff..1dd813a 100644 --- a/util/fbrun/FbRun.cc +++ b/util/fbrun/FbRun.cc @@ -47,6 +47,10 @@ #include #include +#ifdef _WIN32 +#include +#endif + using std::cerr; using std::endl; using std::string; @@ -122,6 +126,7 @@ void FbRun::run(const std::string &command) { return; } +#ifdef HAVE_FORK // fork and execute program if (!fork()) { @@ -133,6 +138,26 @@ void FbRun::run(const std::string &command) { execl(shell, shell, "-c", command.c_str(), static_cast(NULL)); exit(0); //exit child } +#elif defined(_WIN32) + /// @todo - unduplicate from FbCommands.cc +#ifndef PATH_MAX +#define PATH_MAX 1024 +#endif + char comspec[PATH_MAX] = {0}; + char * env_var = getenv("COMSPEC"); + if (env_var != NULL) { + strncpy(comspec, env_var, PATH_MAX - 1); + comspec[PATH_MAX - 1] = '\0'; + } else { + strncpy(comspec, "cmd.exe", 7); + comspec[7] = '\0'; + } + + spawnlp(P_NOWAIT, comspec, comspec, "/c", command.c_str(), static_cast(NULL)); + +#else +#error "Can't build FbRun - don't know how to launch without fork on your platform" +#endif hide(); // hide gui -- cgit v0.11.2