From 0a9581dd74645a47a6b705f1df154aa790df2279 Mon Sep 17 00:00:00 2001 From: Michael Hampton Date: Tue, 25 Dec 2007 08:38:25 +0000 Subject: [PATCH] Somebody broke the build by forgetting to #include "threads.h" in some of the modules. Now it compiles again... --- citadel/modules/checkpoint/serv_checkpoint.c | 1 + citadel/modules/expire/serv_expire.c | 2 +- citadel/modules/fulltext/serv_fulltext.c | 2 +- citadel/modules/network/serv_network.c | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/citadel/modules/checkpoint/serv_checkpoint.c b/citadel/modules/checkpoint/serv_checkpoint.c index 1d48ff5e0..074adeb60 100644 --- a/citadel/modules/checkpoint/serv_checkpoint.c +++ b/citadel/modules/checkpoint/serv_checkpoint.c @@ -35,6 +35,7 @@ #include "msgbase.h" #include "sysdep_decls.h" #include "config.h" +#include "threads.h" #include "ctdl_module.h" diff --git a/citadel/modules/expire/serv_expire.c b/citadel/modules/expire/serv_expire.c index df65a8dca..4ba4de53e 100644 --- a/citadel/modules/expire/serv_expire.c +++ b/citadel/modules/expire/serv_expire.c @@ -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" diff --git a/citadel/modules/fulltext/serv_fulltext.c b/citadel/modules/fulltext/serv_fulltext.c index ef542d829..522ebe7f5 100644 --- a/citadel/modules/fulltext/serv_fulltext.c +++ b/citadel/modules/fulltext/serv_fulltext.c @@ -42,7 +42,7 @@ #include "room_ops.h" #include "serv_fulltext.h" #include "ft_wordbreaker.h" - +#include "threads.h" #include "ctdl_module.h" diff --git a/citadel/modules/network/serv_network.c b/citadel/modules/network/serv_network.c index ebac0f6b4..66bd03692 100644 --- a/citadel/modules/network/serv_network.c +++ b/citadel/modules/network/serv_network.c @@ -64,6 +64,7 @@ #include "clientsocket.h" #include "file_ops.h" #include "citadel_dirs.h" +#include "threads.h" #ifndef HAVE_SNPRINTF #include "snprintf.h" -- 2.30.2