diff options
author | dinoex <dinoex@FreeBSD.org> | 2005-01-15 10:04:53 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2005-01-15 10:04:53 +0000 |
commit | 6b08bafc10f6a48b66ec3d09a4d70f673d45ec01 (patch) | |
tree | 2e5b361e4c473560adfb168f342f1ac1a8bff82c /www/apache13-modssl | |
parent | 0c9748a002ecde16551945f34a262a63f1ea99a7 (diff) | |
download | FreeBSD-ports-6b08bafc10f6a48b66ec3d09a4d70f673d45ec01.zip FreeBSD-ports-6b08bafc10f6a48b66ec3d09a4d70f673d45ec01.tar.gz |
- 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
Diffstat (limited to 'www/apache13-modssl')
-rw-r--r-- | www/apache13-modssl/files/rotatelogs.c.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/www/apache13-modssl/files/rotatelogs.c.patch b/www/apache13-modssl/files/rotatelogs.c.patch new file mode 100644 index 0000000..b2d5c79 --- /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 <time.h> + #include <errno.h> + #include <fcntl.h> ++#include <unistd.h> + + #define BUFSIZE 65536 + #define ERRMSGSZ 82 +@@ -95,6 +96,8 @@ + } + else { + close(nLogFDprev); ++ unlink(szLogRoot); ++ link(buf2, szLogRoot); + } + nMessCount = 0; + } |