always build imap as well.
[apps/madmutt.git] / system.c
index af915de..2d96430 100644 (file)
--- a/system.c
+++ b/system.c
 #endif
 
 #include "mutt.h"
-#ifdef USE_IMAP
-# include "imap.h"
-# include <errno.h>
-#endif
+#include <imap/imap.h>
 
+#include <errno.h>
 #include <stdlib.h>
 #include <signal.h>
 #include <string.h>
@@ -104,12 +102,7 @@ int _mutt_system (const char *cmd, int flags)
     _exit (127);                /* execl error */
   }
   else if (thepid != -1) {
-#ifndef USE_IMAP
-    /* wait for the (first) child process to finish */
-    waitpid (thepid, &rc, 0);
-#else
     rc = imap_wait_keepalive (thepid);
-#endif
   }
 
   sigaction (SIGCONT, &oldcont, NULL);