]> jfr.im git - irc/quakenet/newserv.git/commitdiff
Add MODULE_VERSION to all default modules.
authorChris Porter <redacted>
Mon, 18 Aug 2008 20:14:52 +0000 (21:14 +0100)
committerChris Porter <redacted>
Mon, 18 Aug 2008 20:14:52 +0000 (21:14 +0100)
authext/authext.c
bans/bans.c
chanindex/chanindex.c
localuser/localuserstats.c
serverlist/serverlist.c
usercount/usercount.c

index 0b395d764394b778106d678c99233856c4f2d0d1..e1939e38605ffc051903a09fa5b4f49cbb029600 100644 (file)
@@ -6,10 +6,13 @@
 #include "../nick/nick.h"
 #include "../core/hooks.h"
 #include "../lib/strlfunc.h"
+#include "../lib/version.h"
 
 #include <string.h>
 #include <stdio.h>
 
+MODULE_VERSION("")
+
 #define ALLOCUNIT 100
 
 #define authnamehash(x)   ((x)%AUTHNAMEHASHSIZE)
index b7fc500e300c90f998e3ab41d198cc7517a6cb24..137308638a701ed4aeeb649948854cf22c4ba5ac 100644 (file)
@@ -10,6 +10,9 @@
 #include "../irc/irc_config.h"
 #include "../core/nsmalloc.h"
 #include "../lib/flags.h"
+#include "../lib/version.h"
+
+MODULE_VERSION("")
 
 #define ALLOCUNIT 100
 
index a859250cb2b86eda681180725762db20427f6ce9..e610fd8e2e960ce8e6b0d7557f65d1314f0d0ed6 100644 (file)
@@ -5,10 +5,13 @@
 #include "../lib/irc_string.h"
 #include "../core/error.h"
 #include "../core/nsmalloc.h"
+#include "../lib/version.h"
 
 #include <stdio.h>
 #include <string.h>
 
+MODULE_VERSION("")
+
 #define ALLOCUNIT      1000
 
 #define channelhash(x)  (crc32i(x)%CHANNELHASHSIZE)
index 411434daff7feac71383bcd0ff8d2cbf8e7bcc0a..8d55e39c83ea5dfcab7af7f75b4a663acc24c8f9 100644 (file)
@@ -4,12 +4,15 @@
 #include "../nick/nick.h"
 #include "../irc/irc.h"
 #include "../core/error.h"
+#include "../lib/version.h"
 
 #include <stdarg.h>
 #include <stdio.h>
 #include <assert.h>
 #include <string.h>
 
+MODULE_VERSION("")
+
 int handleserverstats(void *source, int cargc, char **cargv);
 int handleserverstatsend(void *source, int cargc, char **cargv);
 
index 9b47ee501e5b287ac6e22c24cc5a155096f9bdc9..47e9ba7c52f51b0eba673524d7af8f9de1422463 100644 (file)
@@ -5,6 +5,9 @@
 #include "../localuser/localuserchannel.h"
 #include "../control/control.h"
 #include "../usercount/usercount.h"
+#include "../lib/version.h"
+
+MODULE_VERSION("")
 
 #include <stdlib.h>
 #include <string.h>
index d0fc405a008ee2cb032612582513f3d71cb37b6a..02cecb6af585f13481069baf74b7bb03a78d3b40 100644 (file)
@@ -2,8 +2,11 @@
 
 #include "../nick/nick.h"
 #include "../core/hooks.h"
+#include "../lib/version.h"
 #include "usercount.h"
 
+MODULE_VERSION("")
+
 int servercount[MAXSERVERS];
 
 static void uc_newserver(int hook, void *arg);