You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by gs...@locus.apache.org on 2000/12/22 23:44:45 UTC

cvs commit: httpd-2.0 STATUS configure.in

gstein      00/12/22 14:44:45

  Modified:    .        STATUS configure.in
  Log:
  Back out the .libs thing from the aprutil linking. Add --disable-shared (for
  now) to the subdir config to ensure that we only get a static library for
  aprutil (which allows for linking all of its functions into the executable).
  [ APR will need something similar if/when it gets libtool-ized ]
  
  Mark a note in STATUS indicating we should eventually toss the
  --disable-shared flag.
  
  Revision  Changes    Path
  1.176     +6 -1      httpd-2.0/STATUS
  
  Index: STATUS
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/STATUS,v
  retrieving revision 1.175
  retrieving revision 1.176
  diff -u -u -r1.175 -r1.176
  --- STATUS	2000/12/21 02:52:00	1.175
  +++ STATUS	2000/12/22 22:44:45	1.176
  @@ -1,5 +1,5 @@
   APACHE 2.0 STATUS:						-*-text-*-
  -Last modified at [$Date: 2000/12/21 02:52:00 $]
  +Last modified at [$Date: 2000/12/22 22:44:45 $]
   
   Release:
   
  @@ -65,6 +65,11 @@
       * binbuild.sh may need to be updated.  I haven't looked into this, but I
         would be surprised if it works.
   	Status: rbb volunteers
  +
  +    * remove the --disable-shared from the subdir config of APR(UTIL)
  +      before the final release. (in fact, it might even be nice to
  +      allow for Apache config/build against an already-installed APR(UTIL))
  +
   
   RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
       * The directives to setup output filters need to be re-visited.  These
  
  
  
  1.107     +2 -2      httpd-2.0/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/configure.in,v
  retrieving revision 1.106
  retrieving revision 1.107
  diff -u -u -r1.106 -r1.107
  --- configure.in	2000/12/21 01:27:46	1.106
  +++ configure.in	2000/12/22 22:44:45	1.107
  @@ -174,7 +174,7 @@
   
   dnl AP_LIB_DIRS specifies the additional libs from srclib/ that we need
   dnl AP_LIBS specifies the actual libraries. note we have some required libs.
  -AP_LIBS="srclib/pcre/libpcre.la srclib/apr-util/.libs/libaprutil.a"
  +AP_LIBS="srclib/pcre/libpcre.la srclib/apr-util/libaprutil.la"
   
   if test "$apache_need_expat" = "yes"; then
     AP_LIB_DIRS="$AP_LIB_DIRS expat-lite"
  @@ -219,7 +219,7 @@
   dnl ## This allows APR to detect libraries like dl and tell Apache that it
   dnl ## needs to include or not include them.
   RUN_SUBDIR_CONFIG_NOW(srclib/apr, $apache_apr_flags)
  -RUN_SUBDIR_CONFIG_NOW(srclib/apr-util, "--with-apr=../apr")
  +RUN_SUBDIR_CONFIG_NOW(srclib/apr-util, "--with-apr=../apr --disable-shared")
   RUN_SUBDIR_CONFIG_NOW(srclib/pcre)
   . ./srclib/apr/APRVARS