trawick     01/08/01 08:56:36

  Modified:    build    apr_hints.m4
  Log:
  Fix the unresolved reference to pthread_sigmask() on Darwin.
  
  While I did not find definitive information that
  SIGPROCMASK_SETS_THREAD_MASK on Darwin, I did see that
  some other apps are using sigprocmask() in lieu of
  pthread_sigmask().
  
  Revision  Changes    Path
  1.16      +1 -1      apr/build/apr_hints.m4
  
  Index: apr_hints.m4
  ===================================================================
  RCS file: /home/cvs/apr/build/apr_hints.m4,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- apr_hints.m4      2001/06/01 02:57:02     1.15
  +++ apr_hints.m4      2001/08/01 15:56:36     1.16
  @@ -165,7 +165,7 @@
        APR_ADDTO(CPPFLAGS, [-DRHAPSODY])
        ;;
       *-apple-darwin*)
  -     APR_ADDTO(CPPFLAGS, [-DDARWIN])
  +     APR_ADDTO(CPPFLAGS, [-DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK])
        ;;
       *-dec-osf*)
        APR_ADDTO(CPPFLAGS, [-DOSF1])
  
  
  

Reply via email to