aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2001-12-21 23:12:20 +0000
committerDavid Shaw <[email protected]>2001-12-21 23:12:20 +0000
commit846a24fd7454bdcb715b26e680aec598b3f879ba (patch)
treea9a81effe15c9370db92a39ffec310f701cdded5
parentAdd new photo ID files and modify gpgsplit to name attribute packets (diff)
downloadgnupg-846a24fd7454bdcb715b26e680aec598b3f879ba.tar.gz
gnupg-846a24fd7454bdcb715b26e680aec598b3f879ba.zip
Add acconfig.h for easier #define grouping
-rw-r--r--ChangeLog5
-rw-r--r--acconfig.h5
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6b6756c41..58dcf3d8e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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