]> granicus.if.org Git - neomutt/commitdiff
build: remove unnecessary #ifdef's
authorRichard Russon <rich@flatcap.org>
Tue, 13 Dec 2016 01:02:23 +0000 (01:02 +0000)
committerRichard Russon <rich@flatcap.org>
Fri, 23 Dec 2016 23:35:25 +0000 (23:35 +0000)
Several source files contain #ifdef's around all the code.
They aren't necessary -- their inclusion is handled by the Makefile.

crypt-gpgme.c
hcache-bdb.c
hcache-gdbm.c
hcache-kc.c
hcache-lmdb.c
hcache-qdbm.c
hcache-tc.c

index 596b7116165fbcefcaf8451e73e94c2765f53d40..ca8149a43629743ab3113e7a5b1c464b21542356 100644 (file)
@@ -25,8 +25,6 @@
 # include "config.h"
 #endif
 
-#ifdef CRYPT_BACKEND_GPGME
-
 #include "mutt.h"
 #include "mutt_crypt.h"
 #include "mutt_menu.h"
@@ -4966,5 +4964,3 @@ void mutt_gpgme_set_sender (const char *sender)
   current_sender = safe_strdup (sender);
 }
 
-
-#endif
index 3c2b41454c2df08aa4eb04c62cb54b9ad55e424e..a2f36f250021ecc5ad62817c9aa83ac2059e2dc3 100644 (file)
@@ -21,8 +21,6 @@
 
 #include "config.h"
 
-#ifdef HAVE_BDB
-
 #include "hcache-backend.h"
 #include "mutt.h"
 #include "mx.h"
@@ -205,4 +203,3 @@ hcache_bdb_backend(void)
 
 HCACHE_BACKEND_OPS(bdb)
 
-#endif /* HAVE_BDB */
index da27018bf73f41e685e22be207e9090ca8021071..1f52a42ef0c7dd684fb2ffea55ffb62fdbab2064 100644 (file)
@@ -21,8 +21,6 @@
 
 #include "config.h"
 
-#ifdef HAVE_GDBM
-
 #include "hcache-backend.h"
 #include "mutt.h"
 #include <gdbm.h>
@@ -120,4 +118,3 @@ hcache_gdbm_backend(void)
 
 HCACHE_BACKEND_OPS(gdbm)
 
-#endif /* HAVE_GDBM */
index 46a0968d0198fa59049cb61bc2ea4ca6b97704a5..65aba96359d93d49679675d275564779d3b0340c 100644 (file)
@@ -21,8 +21,6 @@
 
 #include "config.h"
 
-#ifdef HAVE_KC
-
 #include "hcache-backend.h"
 #include "mutt.h"
 #include <kclangc.h>
@@ -126,4 +124,3 @@ hcache_kyotocabinet_backend(void)
 
 HCACHE_BACKEND_OPS(kyotocabinet)
 
-#endif /* HAVE_KC */
index 4b35daa95cf1199e36565bf7627cad7aa2fc9a63..5af171667a0302940201eb24413ace82baf81a16 100644 (file)
@@ -21,8 +21,6 @@
 
 #include "config.h"
 
-#ifdef HAVE_LMDB
-
 #include "hcache-backend.h"
 #include "lib.h"
 
@@ -281,4 +279,3 @@ hcache_lmdb_backend(void)
 
 HCACHE_BACKEND_OPS(lmdb)
 
-#endif /* HAVE_LMDB */
index 798d46156392954a12ceff0d17d89d7efb37d84e..0c62e03b46792ffd51e0dfe48113de563612021a 100644 (file)
@@ -21,8 +21,6 @@
 
 #include "config.h"
 
-#ifdef HAVE_QDBM
-
 #include "hcache-backend.h"
 #include "mutt.h"
 #include <depot.h>
@@ -94,4 +92,3 @@ hcache_qdbm_backend(void)
 
 HCACHE_BACKEND_OPS(qdbm)
 
-#endif /* HAVE_LMDB */
index 2824a916b953e134db2f4cea61a6eed670e2cbe9..657d88fb35933771e0612bd66abf753c6ee68933 100644 (file)
@@ -21,8 +21,6 @@
 
 #include "config.h"
 
-#ifdef HAVE_TC
-
 #include "hcache-backend.h"
 #include "mutt.h"
 #include <tcbdb.h>
@@ -111,4 +109,3 @@ hcache_tokyocabinet_backend(void)
 
 HCACHE_BACKEND_OPS(tokyocabinet)
 
-#endif /* HAVE_TC */