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

cvs commit: apache-2.0/src/lib/apr configure.in

rbb         00/10/07 21:00:36

  Modified:    src/lib/apr configure.in
  Log:
  If we determine that a platform does not have DSO support, then it makes
  no sense to try to build DSO support.  This changes stops us from doing
  that.
  PR:	6436
  
  Revision  Changes    Path
  1.156     +2 -1      apache-2.0/src/lib/apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/configure.in,v
  retrieving revision 1.155
  retrieving revision 1.156
  diff -u -r1.155 -r1.156
  --- configure.in	2000/10/05 05:42:04	1.155
  +++ configure.in	2000/10/08 04:00:36	1.156
  @@ -35,7 +35,7 @@
   # These added to allow default directories to be used...
   DEFAULT_OSDIR="unix"
   echo "(Default will be ${DEFAULT_OSDIR})"
  -MODULES="file_io network_io threadproc misc locks time mmap shmem dso i18n"
  +MODULES="file_io network_io threadproc misc locks time mmap shmem i18n"
   
   # Most platforms use a prefix of 'lib' on their library files.
   LIBPREFIX='lib'
  @@ -468,6 +468,7 @@
       aprdso="0"
   else
       aprdso="1"
  +    MODULES="$MODULES dso"
   fi
   
   AC_SUBST(aprdso)