Somebody broke the build by forgetting to #include "threads.h" in some of
authorMichael Hampton <io_error@uncensored.citadel.org>
Tue, 25 Dec 2007 08:38:25 +0000 (08:38 +0000)
committerMichael Hampton <io_error@uncensored.citadel.org>
Tue, 25 Dec 2007 08:38:25 +0000 (08:38 +0000)
the modules. Now it compiles again...

citadel/modules/checkpoint/serv_checkpoint.c
citadel/modules/expire/serv_expire.c
citadel/modules/fulltext/serv_fulltext.c
citadel/modules/network/serv_network.c

index 1d48ff5e05c5f7f5a2bcb816b12cb9e04a3b7bc3..074adeb60dd6b1fe58f69796a27d67b921257611 100644 (file)
@@ -35,6 +35,7 @@
 #include "msgbase.h"
 #include "sysdep_decls.h"
 #include "config.h"
+#include "threads.h"
 
 #include "ctdl_module.h"
  
index df65a8dcada2cc9b29d114244f836879607ababc..4ba4de53e2cc66c2bad0d0a68186f00110e00d22 100644 (file)
@@ -62,7 +62,7 @@
 #include "user_ops.h"
 #include "control.h"
 #include "serv_network.h"      /* Needed for defenition of UseTable */
-
+#include "threads.h"
 
 #include "ctdl_module.h"
 
index ef542d8291620039723bc76303fd4b429e76ced5..522ebe7f58d350a3abc507b08731b31d91198163 100644 (file)
@@ -42,7 +42,7 @@
 #include "room_ops.h"
 #include "serv_fulltext.h"
 #include "ft_wordbreaker.h"
-
+#include "threads.h"
 
 #include "ctdl_module.h"
 
index ebac0f6b4de0a4d859316532edc3939efce07804..66bd03692c20f4afc9b03be9233af8aaac42c64a 100644 (file)
@@ -64,6 +64,7 @@
 #include "clientsocket.h"
 #include "file_ops.h"
 #include "citadel_dirs.h"
+#include "threads.h"
 
 #ifndef HAVE_SNPRINTF
 #include "snprintf.h"