changeset 1911:c123420debd7

Add missing #ifdef.
author Jonathan Schleifer <js@h3c.de>
date Thu, 27 Sep 2007 22:28:18 +0200
parents 7f9d2bb96441
children 613e4c8bd14f
files src/filewriter/vorbis.c
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/filewriter/vorbis.c	Thu Sep 27 22:10:35 2007 +0200
+++ b/src/filewriter/vorbis.c	Thu Sep 27 22:28:18 2007 +0200
@@ -20,6 +20,9 @@
  */
 
 #include "plugins.h"
+
+#ifdef FILEWRITER_VORBIS
+
 #include <vorbis/vorbisenc.h>
 #include <stdlib.h>
 
@@ -310,3 +313,5 @@
 
     gtk_widget_show_all(configure_win);
 }
+
+#endif