mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
network/awstats: Fixup for perl-5.22
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
51529df474
commit
a7d1cd4d86
2 changed files with 25 additions and 0 deletions
|
@ -59,6 +59,9 @@ find -L . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
# https://sourceforge.net/p/awstats/bugs/943/
|
||||
patch -p1 < $CWD/patches/fixup-warnings-in-perl-522.patch
|
||||
|
||||
# Patch httpd_conf file supplied by awstats to correct paths
|
||||
sed s:@DOCROOT@:$DOCROOT: $CWD/patches/httpd-awstats.conf.patch | patch -p0
|
||||
# Patch awstats_configure.pl file -- see patch header for details
|
||||
|
|
22
network/awstats/patches/fixup-warnings-in-perl-522.patch
Normal file
22
network/awstats/patches/fixup-warnings-in-perl-522.patch
Normal file
|
@ -0,0 +1,22 @@
|
|||
diff -Nur awstats-7.4.orig/wwwroot/cgi-bin/awstats.pl awstats-7.4/wwwroot/cgi-bin/awstats.pl
|
||||
--- awstats-7.4.orig/wwwroot/cgi-bin/awstats.pl 2015-07-14 07:52:31.000000000 -0500
|
||||
+++ awstats-7.4/wwwroot/cgi-bin/awstats.pl 2016-02-17 16:51:41.341139338 -0600
|
||||
@@ -9040,12 +9040,12 @@
|
||||
$LogFormatString =~ s/%>s/%code/g;
|
||||
$LogFormatString =~ s/%b(\s)/%bytesd$1/g;
|
||||
$LogFormatString =~ s/%b$/%bytesd/g;
|
||||
- $LogFormatString =~ s/\"%{Referer}i\"/%refererquot/g;
|
||||
- $LogFormatString =~ s/\"%{User-Agent}i\"/%uaquot/g;
|
||||
- $LogFormatString =~ s/%{mod_gzip_input_size}n/%gzipin/g;
|
||||
- $LogFormatString =~ s/%{mod_gzip_output_size}n/%gzipout/g;
|
||||
- $LogFormatString =~ s/%{mod_gzip_compression_ratio}n/%gzipratio/g;
|
||||
- $LogFormatString =~ s/\(%{ratio}n\)/%deflateratio/g;
|
||||
+ $LogFormatString =~ s/\"%\{Referer}i\"/%refererquot/g;
|
||||
+ $LogFormatString =~ s/\"%\{User-Agent}i\"/%uaquot/g;
|
||||
+ $LogFormatString =~ s/%\{mod_gzip_input_size}n/%gzipin/g;
|
||||
+ $LogFormatString =~ s/%\{mod_gzip_output_size}n/%gzipout/g;
|
||||
+ $LogFormatString =~ s/%\{mod_gzip_compression_ratio}n/%gzipratio/g;
|
||||
+ $LogFormatString =~ s/\(%\{ratio}n\)/%deflateratio/g;
|
||||
|
||||
# Replacement for a IIS and ISA format string
|
||||
$LogFormatString =~ s/cs-uri-query/%query/g; # Must be before cs-uri
|
Loading…
Reference in a new issue