You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@locus.apache.org on 2000/03/31 00:23:10 UTC

cvs commit: apache-2.0/src/lib/apr threads.m4

trawick     00/03/30 14:23:10

  Modified:    src/lib/apr threads.m4
  Log:
  include <stddef.h> in the PTHREADS_CHECK_COMPILE test
  program (for the definition of NULL)
  
  Revision  Changes    Path
  1.2       +1 -0      apache-2.0/src/lib/apr/threads.m4
  
  Index: threads.m4
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/threads.m4,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- threads.m4	2000/01/16 20:00:50	1.1
  +++ threads.m4	2000/03/30 22:23:09	1.2
  @@ -20,6 +20,7 @@
   AC_DEFUN(PTHREADS_CHECK_COMPILE, [
   AC_TRY_RUN( [
   #include <pthread.h>
  +#include <stddef.h>
   
   void *thread_routine(void *data) {
       return data;