2007-09-25 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Tue, 25 Sep 2007 16:35:36 +0000 (16:35 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Tue, 25 Sep 2007 16:35:36 +0000 (16:35 +0000)
* conversion.c, keylist.c: Include <sys/types.h>.

trunk/gpgme/ChangeLog
trunk/gpgme/conversion.c
trunk/gpgme/keylist.c

index 3f1da55827d421063e5137b6be3e46a97e20c630..1988d581489a307c83267d30dad6e717265314ce 100644 (file)
@@ -1,5 +1,7 @@
 2007-09-25  Marcus Brinkmann  <marcus@g10code.de>
 
+       * conversion.c, keylist.c: Include <sys/types.h>.
+
        * kdpipeiodevice.h: Use namespace _gpgme_.
        * kdpipeiodevice.cpp: Use namespace _gpgme_.
        [Q_OS_WIN32 && NOMINMAX]: Do not define NOMINMAX again.
index a8d15899b0068d9693c25971c97e39b839fb8bfd..f431238ce9a6aee9fc363584db3d4bbdd72ef1e6 100644 (file)
@@ -25,6 +25,8 @@
 
 #include <stdlib.h>
 #include <string.h>
+/* Solaris 8 needs sys/types.h before time.h.  */
+#include <sys/types.h>
 #include <time.h>
 #include <errno.h>
 
index b56131cef0f5567ea9dbc44e045c121016a965ae..0f88cf74dbea98496dc0391a97a187ea82386b9b 100644 (file)
@@ -25,6 +25,8 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+/* Solaris 8 needs sys/types.h before time.h.  */
+#include <sys/types.h>
 #include <time.h>
 #include <assert.h>
 #include <ctype.h>