diff src/filewriter/mp3.c @ 1197:616928ec054d trunk

Add #ifdef FILEWRITER_MP3 to filewriter/mp3.c
author Jonathan Schleifer <js@h3c.de>
date Sun, 01 Jul 2007 02:30:41 +0200
parents b1128efde471
children 94eee8a16189
line wrap: on
line diff
--- a/src/filewriter/mp3.c	Sat Jun 23 23:35:05 2007 -0500
+++ b/src/filewriter/mp3.c	Sun Jul 01 02:30:41 2007 +0200
@@ -22,6 +22,8 @@
 
 #include "plugins.h"
 
+#ifdef FILEWRITER_MP3
+
 #include <lame/lame.h>
 #define ENCBUFFER_SIZE 35000
 
@@ -1994,3 +1996,5 @@
 
     }
 }
+
+#endif