Commit 7cd00a56 authored by Christophe Massiot's avatar Christophe Massiot

* modules/demux/mkv.cpp: Compile fix for OS X.

parent c278cac2
...@@ -438,7 +438,7 @@ AC_EGREP_HEADER(strncasecmp,strings.h,[ ...@@ -438,7 +438,7 @@ AC_EGREP_HEADER(strncasecmp,strings.h,[
AC_MSG_RESULT(no)]) AC_MSG_RESULT(no)])
dnl Check for headers dnl Check for headers
AC_CHECK_HEADERS(signal.h time.h errno.h stdint.h getopt.h strings.h inttypes.h sys/int_types.h) AC_CHECK_HEADERS(signal.h time.h errno.h stdint.h getopt.h strings.h inttypes.h sys/int_types.h wchar.h)
AC_CHECK_HEADERS(sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h) AC_CHECK_HEADERS(sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h)
AC_CHECK_HEADERS(dlfcn.h image.h) AC_CHECK_HEADERS(dlfcn.h image.h)
AC_CHECK_HEADERS(arpa/inet.h net/if.h netinet/in.h sys/socket.h) AC_CHECK_HEADERS(arpa/inet.h net/if.h netinet/in.h sys/socket.h)
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mkv.cpp : matroska demuxer * mkv.cpp : matroska demuxer
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: mkv.cpp,v 1.15 2003/06/26 16:46:19 fenrir Exp $ * $Id: mkv.cpp,v 1.16 2003/06/28 12:07:00 massiot Exp $
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
...@@ -40,7 +40,9 @@ ...@@ -40,7 +40,9 @@
#include <cassert> #include <cassert>
#include <typeinfo> #include <typeinfo>
#include <wchar.h> #ifdef HAVE_WCHAR_H
# include <wchar.h>
#endif
/* libebml and matroska */ /* libebml and matroska */
#include "ebml/EbmlHead.h" #include "ebml/EbmlHead.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment