diff options
author | Marcus Brinkmann <[email protected]> | 2003-10-06 19:46:55 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2003-10-06 19:46:55 +0000 |
commit | 91cc459641bd8c80c751dae2b8a3166e704530f0 (patch) | |
tree | 926044deb4349af1f23ab9a841175442f63e8356 | |
parent | 2003-10-06 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-91cc459641bd8c80c751dae2b8a3166e704530f0.tar.gz gpgme-91cc459641bd8c80c751dae2b8a3166e704530f0.zip |
2003-10-06 Marcus Brinkmann <[email protected]>
* gpg/t-eventloop.c: Include <sys/types.h> for old systems.
-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> |