From 6b08bafc10f6a48b66ec3d09a4d70f673d45ec01 Mon Sep 17 00:00:00 2001 From: dinoex Date: Sat, 15 Jan 2005 10:04:53 +0000 Subject: - new option WITH_APACHE_LATESTLOG that patches rotatelogs to always keep a hardlink to the latest log file, but without the seconds-since-epoch integer. Just as a convenience - when developing web apps, it makes it easier to just check the log file. Submitted by: Palle Girgensohn --- www/apache13-modssl/files/rotatelogs.c.patch | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 www/apache13-modssl/files/rotatelogs.c.patch (limited to 'www/apache13-modssl') diff --git a/www/apache13-modssl/files/rotatelogs.c.patch b/www/apache13-modssl/files/rotatelogs.c.patch new file mode 100644 index 000000000000..b2d5c79a92ff --- /dev/null +++ b/www/apache13-modssl/files/rotatelogs.c.patch @@ -0,0 +1,19 @@ +--- src/support/rotatelogs.c~ Mon Aug 3 11:15:33 1998 ++++ src/support/rotatelogs.c Sun Mar 26 22:42:40 2000 +@@ -11,6 +11,7 @@ + #include + #include + #include ++#include + + #define BUFSIZE 65536 + #define ERRMSGSZ 82 +@@ -95,6 +96,8 @@ + } + else { + close(nLogFDprev); ++ unlink(szLogRoot); ++ link(buf2, szLogRoot); + } + nMessCount = 0; + } -- cgit