summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHeiko Schaefer <heikos@users.sourceforge.net>2002-02-27 12:08:11 +0000
committerHeiko Schaefer <heikos@users.sourceforge.net>2002-02-27 12:08:11 +0000
commit349bff0614fa2e5aef746cec2b5620103867ae8c (patch)
treeca482f634a38ddc9c25f4efa1d5837c6ca85709f /src
parent53bc0aadc94ba827a4419bf4238b01f1addce92f (diff)
downloadxine-lib-349bff0614fa2e5aef746cec2b5620103867ae8c.tar.gz
xine-lib-349bff0614fa2e5aef746cec2b5620103867ae8c.tar.bz2
FreeBSD compile fix
CVS patchset: 1528 CVS date: 2002/02/27 12:08:11
Diffstat (limited to 'src')
-rw-r--r--src/libsputext/xine_decoder.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/libsputext/xine_decoder.c b/src/libsputext/xine_decoder.c
index 507d95123..8d6857349 100644
--- a/src/libsputext/xine_decoder.c
+++ b/src/libsputext/xine_decoder.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_decoder.c,v 1.13 2002/02/26 23:17:01 guenter Exp $
+ * $Id: xine_decoder.c,v 1.14 2002/02/27 12:08:11 heikos Exp $
*
* code based on mplayer module:
*
@@ -36,7 +36,11 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <ctype.h>
-#include <iconv.h>
+#ifdef __FreeBSD__
+# include <sys/iconv.h>
+#elif
+# include <iconv.h>
+#endif
#include "buffer.h"
#include "events.h"