From b0ce1f03b1c243f376a37773641161c55349bcf3 Mon Sep 17 00:00:00 2001 From: Antoine Jacquet Date: Thu, 20 Sep 2007 00:00:00 +0200 Subject: [PATCH] version 0.74 * added CFLAGS to Makefile (patch by VMiklos) * added '&' and '~' to list of nick prefix (patch by VMiklos) --- CHANGELOG | 4 ++++ Makefile | 3 ++- README | 2 +- irssistats.c | 6 ++++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 4f7ffd9..f69053d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ Change log file for irssistats +version 0.74 (2007-09-20) + * added CFLAGS to Makefile (patch by VMiklos) + * added '&' and '~' to list of nick prefix (patch by VMiklos) + version 0.73 (2007-05-20) * added last weeks and last months options (suggested by Gouki) * fixed theme option when generating output diff --git a/Makefile b/Makefile index 5251143..bc45b7d 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,10 @@ BIN = $(PRE)/bin DAT = $(PRE)/share/irssistats/data DOC = $(PRE)/share/doc/irssistats MAN = $(PRE)/share/man/man1 +CFLAGS ?= -O2 irssistats:irssistats.c - gcc -O2 -o irssistats irssistats.c + gcc $(CFLAGS) -o irssistats irssistats.c clean: rm -f irssistats diff --git a/README b/README index 062a010..eb94446 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -irssistats 0.73 +irssistats 0.74 site: http://royale.zerezo.com/irssistats/ mail: royale@zerezo.com diff --git a/irssistats.c b/irssistats.c index c4e9af2..e287e77 100644 --- a/irssistats.c +++ b/irssistats.c @@ -1,5 +1,5 @@ /* - * irssistats version 0.73 + * irssistats version 0.74 * * This tool generates IRC stats based on irssi logs. * Usage: irssistats [/path/to/file.conf] @@ -49,7 +49,7 @@ #define MINWORDLENGTH 5 /* irssistats */ -#define VERSION "0.73" +#define VERSION "0.74" #define URL "http://royale.zerezo.com/irssistats/" /* Counters */ @@ -1097,6 +1097,8 @@ void parse_log(char *logfile) case '@': case '%': case '+': + case '&': + case '~': case ' ': nickstart = timelen+2; break; -- 2.20.1