trawick     01/02/23 13:33:01

  Modified:    .        configure.in
  Log:
  fix a typo which broke the check for whether share memory is file based
  or mem based
  
  Revision  Changes    Path
  1.236     +1 -1      apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr/configure.in,v
  retrieving revision 1.235
  retrieving revision 1.236
  diff -u -r1.235 -r1.236
  --- configure.in      2001/02/21 18:51:07     1.235
  +++ configure.in      2001/02/23 21:33:01     1.236
  @@ -203,7 +203,7 @@
   
   APR_CHECK_DEFINE(MM_SHMT_MMFILE, $srcdir/shmem/unix/mm/mm_conf.h) 
   
  -if test "ac_cv_define_MM_SHMT_MMFILE" = "yes"; then
  +if test "$ac_cv_define_MM_SHMT_MMFILE" = "yes"; then
       file_based="1"
       mem_based="0"
   else
  
  
  

Reply via email to