rbb 01/09/14 22:23:55
Modified: test testlockperf.c Log: Protect including a header file that doesn't exist on Windows Revision Changes Path 1.2 +2 -0 apr/test/testlockperf.c Index: testlockperf.c =================================================================== RCS file: /home/cvs/apr/test/testlockperf.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- testlockperf.c 2001/09/10 15:47:25 1.1 +++ testlockperf.c 2001/09/15 05:23:55 1.2 @@ -64,7 +64,9 @@ #include <stdio.h> #include <stdlib.h> #include "test_apr.h" +#ifdef HAVE_SYS_TIME_h #include <sys/time.h> /* replace me with apr_time.h */ +#endif #if !APR_HAS_THREADS int main(void)
