You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rs...@hyperreal.org on 1998/05/11 12:13:28 UTC

cvs commit: apache-1.3/src CHANGES Configure

rse         98/05/11 03:13:28

  Modified:    src      CHANGES Configure
  Log:
  Fix handling of LDFLAGS_SHLIB_EXPORT variable. It was used
  in src/Configure but never retrieved from the config file.
  
  Revision  Changes    Path
  1.843     +4 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.842
  retrieving revision 1.843
  diff -u -r1.842 -r1.843
  --- CHANGES	1998/05/10 13:04:25	1.842
  +++ CHANGES	1998/05/11 10:13:25	1.843
  @@ -1,4 +1,8 @@
   Changes with Apache 1.3b7
  +
  +  *) The LDFLAGS_SHLIB_EXPORT variable of src/Configuration[.tmpl] was
  +     not retrieved in src/Configure and thus was not useable.
  +     [Ralf S. Engelschall]
    
     *) Various Makefile consistency cleanups:
        - make OSDIR also automatically be relative to src/ like INCDIR
  
  
  
  1.259     +1 -0      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.258
  retrieving revision 1.259
  diff -u -r1.258 -r1.259
  --- Configure	1998/05/10 13:04:26	1.258
  +++ Configure	1998/05/11 10:13:26	1.259
  @@ -774,6 +774,7 @@
   ## Check for user provided flags for shared object support
   ##
   TLDFLAGS_SHLIB=`egrep '^LDFLAGS_SHLIB=' Makefile.config | tail -1 | awk -F= '{print $2}'`
  +TLDFLAGS_SHLIB_EXPORT=`egrep '^LDFLAGS_SHLIB_EXPORT=' Makefile.config | tail -1 | awk -F= '{print $2}'`
   TCFLAGS_SHLIB=`egrep '^CFLAGS_SHLIB=' Makefile.config | tail -1 | awk -F= '{print $2}'`
   
   ####################################################################