diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-07-25 17:37:09 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-07-25 17:37:09 -0400 |
commit | c46b6bef8820ef3295bce3374c1afb90a6725557 (patch) | |
tree | 441fbaa382fac333529b6a77101900fd471cdb41 /BuildFlags.hs | |
parent | 36feacc1ea527d28bcedc87ae8a537c9990c7bb6 (diff) |
Support building without persistent database on for systems that lack TH. This removes support for incremental fsck.
Diffstat (limited to 'BuildFlags.hs')
-rw-r--r-- | BuildFlags.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/BuildFlags.hs b/BuildFlags.hs index a0f0ac298..2e8d05ea3 100644 --- a/BuildFlags.hs +++ b/BuildFlags.hs @@ -83,8 +83,11 @@ buildFlags = filter (not . null) #endif #ifdef WITH_TORRENTPARSER , "TorrentParser" +#endif +#ifdef WITH_DATABASE + , "Database" #else - +#warning Building without Database support #endif #ifdef WITH_EKG , "EKG" |