1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-21 15:01:41 +02:00

Add acconfig.h for easier #define grouping

This commit is contained in:
David Shaw 2001-12-21 23:12:20 +00:00
parent 48468e8b25
commit 846a24fd74
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2001-12-21 David Shaw <dshaw@jabberwocky.com>
* Add an acconfig.h to define EXEC_TEMPFILE_ONLY on platforms that
can't do fork/exec.
2001-12-21 Werner Koch <wk@gnupg.org>
* Makefile.am (dist-hook): We should also look in include for

5
acconfig.h Normal file
View File

@ -0,0 +1,5 @@
@BOTTOM@
#if !(defined(HAVE_FORK) && defined(HAVE_PIPE) && defined(HAVE_WAITPID))
#define EXEC_TEMPFILE_ONLY
#endif