martin 2003/06/20 05:55:19
Modified: include/arch/unix apr_arch_shm.h Log: Some SVR4 dialects need mutexes declared before including shm.h Revision Changes Path 1.2 +3 -0 apr/include/arch/unix/apr_arch_shm.h Index: apr_arch_shm.h =================================================================== RCS file: /home/cvs/apr/include/arch/unix/apr_arch_shm.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -u -r1.1 -r1.2 --- apr_arch_shm.h 6 Jan 2003 23:44:26 -0000 1.1 +++ apr_arch_shm.h 20 Jun 2003 12:55:19 -0000 1.2 @@ -71,6 +71,9 @@ #ifdef HAVE_SYS_IPC_H #include <sys/ipc.h> #endif +#ifdef HAVE_SYS_MUTEX_H +#include <sys/mutex.h> +#endif #ifdef HAVE_SYS_SHM_H #include <sys/shm.h> #endif
