summaryrefslogtreecommitdiff
path: root/m4/wint_t.m4
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2009-05-17 14:28:25 +0100
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2009-05-17 14:28:25 +0100
commit7449244be479be3437f822a99c12d8597176e1af (patch)
treea2eb6d7cfaae253bbd413cc249960619f1b60d80 /m4/wint_t.m4
parent817e40dd565b54786ae7034f6a38ce641e31dd64 (diff)
downloadxine-lib-7449244be479be3437f822a99c12d8597176e1af.tar.gz
xine-lib-7449244be479be3437f822a99c12d8597176e1af.tar.bz2
Require gettext 0.17; pull in some related updates (via autopoint).
Diffstat (limited to 'm4/wint_t.m4')
-rw-r--r--m4/wint_t.m414
1 files changed, 11 insertions, 3 deletions
diff --git a/m4/wint_t.m4 b/m4/wint_t.m4
index b8fff9c86..af5ed936c 100644
--- a/m4/wint_t.m4
+++ b/m4/wint_t.m4
@@ -1,5 +1,5 @@
-# wint_t.m4 serial 1 (gettext-0.12)
-dnl Copyright (C) 2003 Free Software Foundation, Inc.
+# wint_t.m4 serial 2 (gettext-0.17)
+dnl Copyright (C) 2003, 2007 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
@@ -11,7 +11,15 @@ dnl Prerequisite: AC_PROG_CC
AC_DEFUN([gt_TYPE_WINT_T],
[
AC_CACHE_CHECK([for wint_t], gt_cv_c_wint_t,
- [AC_TRY_COMPILE([#include <wchar.h>
+ [AC_TRY_COMPILE([
+/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
+ <wchar.h>.
+ BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included
+ before <wchar.h>. */
+#include <stddef.h>
+#include <stdio.h>
+#include <time.h>
+#include <wchar.h>
wint_t foo = (wchar_t)'\0';], ,
gt_cv_c_wint_t=yes, gt_cv_c_wint_t=no)])
if test $gt_cv_c_wint_t = yes; then