diff options
author | David Shaw <[email protected]> | 2001-12-21 23:12:20 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2001-12-21 23:12:20 +0000 |
commit | 846a24fd7454bdcb715b26e680aec598b3f879ba (patch) | |
tree | a9a81effe15c9370db92a39ffec310f701cdded5 | |
parent | Add new photo ID files and modify gpgsplit to name attribute packets (diff) | |
download | gnupg-846a24fd7454bdcb715b26e680aec598b3f879ba.tar.gz gnupg-846a24fd7454bdcb715b26e680aec598b3f879ba.zip |
Add acconfig.h for easier #define grouping
-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 |