mcabber/src/main.c
changeset 1448 844410b9b4cc
parent 1445 00503a68f431
child 1454 6b98dc22946d
--- a/mcabber/src/main.c	Fri Mar 21 19:49:27 2008 +0100
+++ b/mcabber/src/main.c	Thu Mar 27 23:27:19 2008 +0100
@@ -42,10 +42,7 @@
 #include "utils.h"
 #include "pgp.h"
 #include "otr.h"
-
-#ifdef ENABLE_FIFO
-# include "fifo.h"
-#endif
+#include "fifo.h"
 
 #ifdef ENABLE_HGCSET
 # include "hgcset.h"
@@ -295,9 +292,6 @@
 #ifdef WITH_ASPELL
   puts("Compiled with Aspell support.");
 #endif
-#ifdef ENABLE_FIFO
-  puts("Compiled with FIFO support.");
-#endif
 #ifdef ENABLE_DEBUG
   puts("Compiled with debugging support.");
 #endif
@@ -494,10 +488,8 @@
 
   chatstates_disabled = settings_opt_get_int("disable_chatstates");
 
-#ifdef ENABLE_FIFO
   /* Initialize FIFO named pipe */
   fifo_init(settings_opt_get("fifo_name"));
-#endif
 
   /* Load previous roster state */
   hlog_load_state();
@@ -530,9 +522,7 @@
   }
 
   scr_TerminateCurses();
-#ifdef ENABLE_FIFO
   fifo_deinit();
-#endif
 #ifdef HAVE_LIBOTR
   otr_terminate();
 #endif