rbb         01/07/25 17:08:41

  Modified:    .        CHANGES Makefile.in configure.in
  Log:
  Fix our installation.  We need to install APRVARS and all the MM stuff.
  
  Revision  Changes    Path
  1.128     +3 -0      apr/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apr/CHANGES,v
  retrieving revision 1.127
  retrieving revision 1.128
  diff -u -r1.127 -r1.128
  --- CHANGES   2001/07/24 22:55:28     1.127
  +++ CHANGES   2001/07/26 00:08:40     1.128
  @@ -1,5 +1,8 @@
   Changes with APR b1  
   
  +  *) Better installation.  This makes us install the APRVARS file,
  +     as well as MM.  [Ryan Bloom]
  +
     *) Provide new number conversion functions apr_itoa, apr_ltoa, and 
        apr_off_t_toa, and inline code in inet_ntop4, to reduce CPU
        consumption. [Brian Pane]
  
  
  
  1.51      +5 -0      apr/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr/Makefile.in,v
  retrieving revision 1.50
  retrieving revision 1.51
  diff -u -r1.50 -r1.51
  --- Makefile.in       2001/05/17 22:25:53     1.50
  +++ Makefile.in       2001/07/26 00:08:40     1.51
  @@ -14,6 +14,7 @@
   #
   [EMAIL PROTECTED]@
   CLEAN_SUBDIRS= . test build
  [EMAIL PROTECTED]@
   
   TARGET_LIB = libapr.la
   TARGET_EXPORTS = apr.exports
  @@ -59,6 +60,10 @@
            ./build/mkdir.sh $(libdir); \
        fi; \
        $(LIBTOOL) --mode=install cp $(TARGET_LIB) $(libdir)
  +     $(LIBTOOL) --mode=install cp APRVARS $(libdir)
  +     @for i in $(INSTALL_SUBDIRS); do \
  +         ( cd $$i ; $(MAKE) install ); \
  +     done
   
   $(TARGET_LIB):
        @for i in $(SUBDIRS); do objects="$$objects $$i/[EMAIL PROTECTED]@"; 
done ; \
  
  
  
  1.345     +3 -0      apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr/configure.in,v
  retrieving revision 1.344
  retrieving revision 1.345
  diff -u -r1.344 -r1.345
  --- configure.in      2001/07/25 18:00:51     1.344
  +++ configure.in      2001/07/26 00:08:40     1.345
  @@ -384,6 +384,9 @@
     APR_SUBDIR_CONFIG($config_subdirs)
   fi
   
  +INSTALL_SUBDIRS=$config_subdirs
  +AC_SUBST(INSTALL_SUBDIRS)
  +
   AC_MSG_CHECKING(for Shared memory support)
   AC_ARG_ENABLE(shmem,
     [  --enable-shmem          Enable shared memory support in APR. ],
  
  
  

Reply via email to