diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ChangeLog | 2 | ||||
-rw-r--r-- | tests/gpg/t-eventloop.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index 13d2fe10..8f6a2d7e 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,5 +1,7 @@ 2003-10-06 Marcus Brinkmann <[email protected]> + * gpg/t-eventloop.c: Include <sys/types.h> for old systems. + * gpgsm/Makefile.am (DISTCLEANFILES): Add random_seed. * gpg/t-thread1.c (thread_one): Do not call initialize_gpgme. diff --git a/tests/gpg/t-eventloop.c b/tests/gpg/t-eventloop.c index 7e8be3c3..1ffaea53 100644 --- a/tests/gpg/t-eventloop.c +++ b/tests/gpg/t-eventloop.c @@ -23,6 +23,7 @@ #include <string.h> #include <assert.h> #include <errno.h> +#include <sys/types.h> #include <sys/select.h> #include <gpgme.h> |