Here is a header fix for config.h which includes sys/mman.h and on OpenBSD you have to include sys/types.h before sys/mman.h
Index: config.h.in =================================================================== --- config.h.in (revision 14153) +++ config.h.in (working copy) @@ -89,6 +89,10 @@ /* Define to empty if `const' does not conform to ANSI C. */ #undef const +#if HAVE_SYS_TYPES_H +#include <sys/types.h> +#endif + #if HAVE_SYS_MMAN_H #include <sys/mman.h> #endif -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. ------------------------------------------------------------------------------ All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity, and more. Splunk takes this data and makes sense of it. IT sense. And common sense. http://p.sf.net/sfu/splunk-novd2d ----- squirrelmail-imapproxy mailing list Posting guidelines: http://squirrelmail.org/postingguidelines List address: [email protected] List archives: http://news.gmane.org/gmane.mail.squirrelmail.imapproxy List info (subscribe/unsubscribe/change options): https://lists.sourceforge.net/lists/listinfo/squirrelmail-imapproxy
