diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | acconfig.h | 5 |
2 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2001-12-21 David Shaw <[email protected]> + + * Add an acconfig.h to define EXEC_TEMPFILE_ONLY on platforms that + can't do fork/exec. + 2001-12-21 Werner Koch <[email protected]> * Makefile.am (dist-hook): We should also look in include for diff --git a/acconfig.h b/acconfig.h new file mode 100644 index 000000000..ee62ae28d --- /dev/null +++ b/acconfig.h @@ -0,0 +1,5 @@ +@BOTTOM@ + +#if !(defined(HAVE_FORK) && defined(HAVE_PIPE) && defined(HAVE_WAITPID)) +#define EXEC_TEMPFILE_ONLY +#endif |