]> git.pld-linux.org Git - packages/apache1.git/commitdiff
- removed mod_include-segv patch (this bug is fixed in apache 1.3.22) apache-1_3_22-1
authorJakub Bogusz <qboosh@pld-linux.org>
Fri, 7 Dec 2001 21:00:14 +0000 (21:00 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- removed lang(en) from *.html.html and main index.html.en (treat them as
  "C locale"), fixed some other lang() marks
- apxs-quiet patch: by default successful apxs -e operations are quiet
  (without commands echo), can be turned off by new -v (like "verbose") option

Changed files:
    apache-apxs-quiet.patch -> 1.1

apache-apxs-quiet.patch [new file with mode: 0644]

diff --git a/apache-apxs-quiet.patch b/apache-apxs-quiet.patch
new file mode 100644 (file)
index 0000000..301529f
--- /dev/null
@@ -0,0 +1,30 @@
+--- apache_1.3.22/src/support/apxs.pl.orig     Fri Dec  7 20:32:18 2001
++++ apache_1.3.22/src/support/apxs.pl  Fri Dec  7 21:47:25 2001
+@@ -111,6 +111,7 @@
+ my $opt_a = 0;
+ my $opt_A = 0;
+ my $opt_q = 0;
++my $opt_v = 0;
+ #   this subroutine is derived from Perl's getopts.pl with the enhancement of
+ #   the "+" metacharater at the format string to allow a list to be build by
+@@ -190,7 +191,7 @@
+ #   option handling
+ my $rc;
+-($rc, @ARGV) = &Getopts("qn:gco:I+D+L+l+W+S+eiaA", @ARGV);
++($rc, @ARGV) = &Getopts("qn:gco:I+D+L+l+W+S+eiaAv", @ARGV);
+ &usage if ($rc == 0);
+ &usage if ($#ARGV == -1 and not $opt_g);
+ &usage if (not $opt_q and not ($opt_g and $opt_n) and not $opt_i and not $opt_c and not $opt_e);
+@@ -247,7 +248,9 @@
+     my ($cmd, $rc);
+     foreach $cmd (@cmds) {
+-        print STDERR "$cmd\n";
++      if ($opt_v or not $opt_e) {
++          print STDERR "$cmd\n";
++      }
+         $rc = system("$cmd");
+         if ($rc != 0) {
+             printf(STDERR "apxs:Break: Command failed with rc=%d\n", $rc >> 8);
This page took 0.037693 seconds and 4 git commands to generate.