From 80f60832adc944984150109d3260455ab9a16e49 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Wed, 30 Mar 2016 11:15:52 +0000 Subject: [PATCH] Disallow compilation of client-tags.c if FEATURE_CLIENT_TAGS isn't enabled ... as that shouldn't happen anymore. --- client-tags.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client-tags.c b/client-tags.c index 31b49d15..54c47048 100644 --- a/client-tags.c +++ b/client-tags.c @@ -588,4 +588,6 @@ int client_tag_match(const struct pattern_spec *pattern, return 0; } +#else +#error Compiling client-tags.c without FEATURE_CLIENT_TAGS #endif /* def FEATURE_CLIENT_TAGS */ -- 2.39.2