]> xenbits.xensource.com Git - libvirt.git/commitdiff
Disable virCommandExec on Win32
authorDaniel P. Berrange <berrange@redhat.com>
Thu, 12 May 2011 09:33:31 +0000 (10:33 +0100)
committerDaniel P. Berrange <berrange@redhat.com>
Mon, 16 May 2011 14:20:48 +0000 (15:20 +0100)
Mingw execve() has a broken signature. Disable this
function until gnulib fixes the signature, since we
don't really need this on Win32 anyway.

* src/util/command.c: Disable virCommandExec on Win32

src/util/command.c

index 7ac411bea1ca59edc7e723add5997ccc3c8ef731..ebb90cb36baf64e73e858a98cab95881cb975cb4 100644 (file)
@@ -989,6 +989,7 @@ cleanup:
  * Returns -1 on any error executing the command.
  * Will not return on success.
  */
+#ifndef WIN32
 int virCommandExec(virCommandPtr cmd)
 {
     if (!cmd ||cmd->has_error == ENOMEM) {
@@ -1003,6 +1004,18 @@ int virCommandExec(virCommandPtr cmd)
 
     return execve(cmd->args[0], cmd->args, cmd->env);
 }
+#else
+int virCommandExec(virCommandPtr cmd ATTRIBUTE_UNUSED)
+{
+    /* Mingw execve() has a broken signature. Disable this
+     * function until gnulib fixes the signature, since we
+     * don't really need this on Win32 anyway.
+     */
+    virReportSystemError(ENOSYS, "%s",
+                         _("Executing new processes is not supported on Win32 platform"));
+    return -1;
+}
+#endif
 
 /*
  * Run the command and wait for completion.