rse         98/06/29 05:10:54

  Modified:    src      CHANGES Configure
  Log:
  Fix the Guess-DSO-flags-from-Perl stuff in src/Configure: "perl" was used
  instead of "$PERL" which contains the correctly determined Perl interpreter
  (important for instance on systems where "perl" and "perl5" exists, like BSDI
  or FreeBSD, etc).
  
  PR: 2505
  
  Revision  Changes    Path
  1.938     +6 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.937
  retrieving revision 1.938
  diff -u -r1.937 -r1.938
  --- CHANGES   1998/06/29 11:41:47     1.937
  +++ CHANGES   1998/06/29 12:10:51     1.938
  @@ -1,5 +1,11 @@
   Changes with Apache 1.3.1
   
  +  *) Fix the Guess-DSO-flags-from-Perl stuff in src/Configure: "perl" was
  +     used instead of "$PERL" which contains the correctly determined Perl
  +     interpreter (important for instance on systems where "perl" and "perl5"
  +     exists, like BSDI or FreeBSD, etc).
  +     [Ralf S. Engelschall] PR#2505
  +
     *) Move the initial suEXEC-related startup message from plain
        fprintf()/stderr to a delayed ap_log_error()-based one to avoid problems
        when Apache is started from inetd (instead of standalone). Under this
  
  
  
  1.269     +3 -3      apache-1.3/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/Configure,v
  retrieving revision 1.268
  retrieving revision 1.269
  diff -u -r1.268 -r1.269
  --- Configure 1998/06/17 13:34:02     1.268
  +++ Configure 1998/06/29 12:10:52     1.269
  @@ -999,9 +999,9 @@
                   if [ ".`$PERL -V:dlsrc 2>/dev/null | grep dlopen`" != . ]; 
then
                       #   ...and actually uses the dlopen-style interface,
                       #   so we can guess the flags from its knowledge
  -                    CFLAGS_SHLIB="`perl -V:cccdlflags | cut -d\' -f2`"
  -                    LDFLAGS_SHLIB="`perl -V:lddlflags | cut -d\' -f2`"
  -                    LDFLAGS_SHLIB_EXPORT="`perl -V:ccdlflags | cut -d\' -f2`"
  +                    CFLAGS_SHLIB="`$PERL -V:cccdlflags | cut -d\' -f2`"
  +                    LDFLAGS_SHLIB="`$PERL -V:lddlflags | cut -d\' -f2`"
  +                    LDFLAGS_SHLIB_EXPORT="`$PERL -V:ccdlflags | cut -d\' 
-f2`"
                       #   but additionally we have to inform the
                       #   user that we are just guessing the flags
                       echo ""
  
  
  

Reply via email to