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 1999/10/27 09:22:50 UTC

cvs commit: apache-1.3/src/support apxs.pl

rse         99/10/27 00:22:50

  Modified:    src/support apxs.pl
  Log:
  Allow egcc and /path/to/gcc, too.
  
  Revision  Changes    Path
  1.28      +1 -1      apache-1.3/src/support/apxs.pl
  
  Index: apxs.pl
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/support/apxs.pl,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- apxs.pl	1999/09/05 18:04:42	1.27
  +++ apxs.pl	1999/10/27 07:22:48	1.28
  @@ -383,7 +383,7 @@
       $opt = '';
       my ($opt_Wl, $opt_L, $opt_l);
       foreach $opt_Wl (@opt_W) {
  -		if($CFG_LD_SHLIB ne "gcc") {
  +		if ($CFG_LD_SHLIB !~ m/gcc$/) {
   	        $opt .= " $1" if ($opt_Wl =~ m|^\s*l,(.*)$|);
   		} else {
   	        $opt .= " -W$opt_Wl";