--- httpd-2.0.43/support/apxs.in.wiget Thu Sep 19 07:43:16 2002 +++ httpd-2.0.43/support/apxs.in Fri Oct 4 11:35:05 2002 @@ -64,11 +64,11 @@ my %config_vars = (); my $installbuilddir = "@exp_installbuilddir@"; -get_config_vars("$installbuilddir/config_vars.mk",\%config_vars); +get_config_vars("/usr/lib/apache/build/config_vars.mk",\%config_vars); # read the configuration variables once -my $prefix = get_vars("prefix"); +my $prefix = "/usr/lib/apache"; my $CFG_PREFIX = $prefix; my $exec_prefix = get_vars("exec_prefix"); my $datadir = get_vars("datadir"); @@ -228,9 +228,7 @@ my $httpd = get_vars("sbindir") . "/" . get_vars("progname"); $httpd = eval qq("$httpd"); $httpd = eval qq("$httpd"); -my $envvars = get_vars("sbindir") . "/envvars"; -$envvars = eval qq("$envvars"); -$envvars = eval qq("$envvars"); +my $envvars = ""; #allow apxs to be run from the source tree, before installation if ($0 =~ m:support/apxs$:) { @@ -424,7 +422,7 @@ $la =~ s|\.c$|.la|; my $o = $s; $o =~ s|\.c$|.o|; - push(@cmds, "$installbuilddir/libtool $ltflags --mode=compile $CFG_CC $cflags -I$CFG_INCLUDEDIR $opt -c -o $lo $s && touch $slo"); + push(@cmds, "/usr/bin/libtool $ltflags --mode=compile $CFG_CC $cflags -I$CFG_INCLUDEDIR $opt -c -o $lo $s && touch $slo"); unshift(@objs, $lo); } @@ -473,7 +471,7 @@ $opt .= " -rpath $CFG_LIBEXECDIR -module -avoid-version"; } - push(@cmds, "$installbuilddir/libtool $ltflags --mode=link $CFG_CC -o $dso_file $opt $lo"); + push(@cmds, "/usr/bin/libtool $ltflags --mode=link $CFG_CC -o $dso_file $opt $lo"); # execute the commands &execute_cmds(@cmds); @@ -505,7 +503,7 @@ $t =~ s|\.la$|\.so|; if ($opt_i) { push(@cmds, "$installbuilddir/instdso.sh SH_LIBTOOL='" . - "$installbuilddir/libtool' $f $CFG_LIBEXECDIR"); + "/usr/bin/libtool' $f $CFG_LIBEXECDIR"); push(@cmds, "chmod 755 $CFG_LIBEXECDIR/$t"); }