cherry-pick/revert: add support for -X/--strategy-option
[gitweb.git] / run-command.h
index 40db39cec0d4dcaac4de6e34d8734be14270552a..56491b9f2344541c02bd0da2928a535f11193bd8 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef RUN_COMMAND_H
 #define RUN_COMMAND_H
 
-#ifdef ASYNC_AS_THREAD
+#ifndef NO_PTHREADS
 #include <pthread.h>
 #endif
 
@@ -78,7 +78,7 @@ struct async {
        void *data;
        int in;         /* caller writes here and closes it */
        int out;        /* caller reads from here and closes it */
-#ifndef ASYNC_AS_THREAD
+#ifdef NO_PTHREADS
        pid_t pid;
 #else
        pthread_t tid;