martin 02/05/16 05:18:10
Modified: include/arch/unix proc_mutex.h Log: Some platforms require the definitions from <sys/ipc.h> to be included before using <sys/sem.h> Revision Changes Path 1.7 +3 -0 apr/include/arch/unix/proc_mutex.h Index: proc_mutex.h =================================================================== RCS file: /home/cvs/apr/include/arch/unix/proc_mutex.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- proc_mutex.h 9 Apr 2002 06:56:56 -0000 1.6 +++ proc_mutex.h 16 May 2002 12:18:10 -0000 1.7 @@ -76,6 +76,9 @@ #include <fcntl.h> #endif +#ifdef HAVE_SYS_IPC_H +#include <sys/ipc.h> +#endif #ifdef HAVE_SYS_SEM_H #include <sys/sem.h> #endif
