summaryrefslogtreecommitdiff
path: root/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2009-12-12Replaced Makefile with SConstruct.Jon Bergli Heier1-25/+0
ircstats now builds by running scons instead of make. Build with DEBUG set to compile with -g. Also added scons-related stuff to .gitignore.
2009-11-22Added support for using pthreads.Jon Bergli Heier1-1/+3
Data processing (parsing) moved to parsing.c. The line parsing code is moved to its own function which is called from one or more threads (depends on the "threads" setting in the config file).
2009-08-21Added structs and functions for nick grouping.Jon Bergli Heier1-1/+1
2009-08-19Write data to an XML file.Jon Bergli Heier1-1/+3
File path for the XML file is read per channel from the 'xmlpath' option.
2009-08-15Added a hash table to keep track of words.Jon Bergli Heier1-1/+1
Moved the sdbm hash function into sdbm.c. Init and free users and words inside the channel loop. Increased the size of the user hash table to 1000.
2009-08-14Added a user struct which is stored in a hash table.Jon Bergli Heier1-1/+1
User nicks are hashed using the sdbm hash function.
2009-08-13Added channels.Jon Bergli Heier1-2/+3
Minor fixes - known bugs!
2009-08-11Added regex sets.Jon Bergli Heier1-2/+5
Minor fixes and comments. Added pcre-config to Makefile.
2009-08-11Initial commit.Jon Bergli Heier1-0/+17