Commit dfea366d authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

rtsp: Include xlocale.h for Mac OS X (at least).

parent deee3a23
...@@ -802,7 +802,7 @@ AC_EGREP_HEADER(strncasecmp,strings.h,[ ...@@ -802,7 +802,7 @@ AC_EGREP_HEADER(strncasecmp,strings.h,[
dnl Check for headers dnl Check for headers
AC_CHECK_HEADERS(signal.h time.h errno.h stdint.h stdbool.h getopt.h strings.h inttypes.h sys/int_types.h wchar.h locale.h) AC_CHECK_HEADERS(signal.h time.h errno.h stdint.h stdbool.h getopt.h strings.h inttypes.h sys/int_types.h wchar.h locale.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 xlocale.h)
AC_CHECK_HEADERS([arpa/inet.h netinet/in.h netinet/udplite.h]) AC_CHECK_HEADERS([arpa/inet.h netinet/in.h netinet/udplite.h])
AC_CHECK_HEADERS([net/if.h], [], [], AC_CHECK_HEADERS([net/if.h], [], [],
[ [
......
...@@ -44,10 +44,15 @@ ...@@ -44,10 +44,15 @@
#include <vlc_strings.h> #include <vlc_strings.h>
#include <errno.h> #include <errno.h>
#ifndef WIN32 #ifndef WIN32
# include <locale.h> # include <locale.h>
#endif #endif
#ifdef HAVE_XLOCALE_H
# include <xlocale.h>
#endif
/***************************************************************************** /*****************************************************************************
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
......
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