From 125dad7119160932b925eeec5ceefc847392919e Mon Sep 17 00:00:00 2001
From: Max Kellermann <max@duempel.org>
Date: Tue, 25 Nov 2008 17:19:42 +0100
Subject: [PATCH] shout: don't check HAVE_SHOUT

If the shout plugin is disabled, shout_plugin.c isn't compiled at all,
no need to check the macro definition.
---
 src/output/shout_plugin.c | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/src/output/shout_plugin.c b/src/output/shout_plugin.c
index a948e19dc..a74dc6929 100644
--- a/src/output/shout_plugin.c
+++ b/src/output/shout_plugin.c
@@ -18,8 +18,6 @@
 
 #include "shout_plugin.h"
 
-#ifdef HAVE_SHOUT
-
 #include "../utils.h"
 
 #include <assert.h>
@@ -582,8 +580,3 @@ const struct audio_output_plugin shoutPlugin = {
 	.close = my_shout_close_device,
 	.send_tag = my_shout_set_tag,
 };
-
-#else
-
-DISABLED_AUDIO_OUTPUT_PLUGIN(shoutPlugin)
-#endif