aboutsummaryrefslogtreecommitdiffstats
path: root/m4
diff options
context:
space:
mode:
authorPaul Eggert2017-01-01 02:33:29 -0800
committerPaul Eggert2017-01-01 02:35:36 -0800
commit65eee8392ff95f58f7b0bd036e1fe065523658c6 (patch)
treefe19edae158f948c08d3f2600bc776fa5696f94d /m4
parentaaf1f4a33c96831b9835574b8bfc6f71ec647fdd (diff)
downloademacs-65eee8392ff95f58f7b0bd036e1fe065523658c6.tar.gz
emacs-65eee8392ff95f58f7b0bd036e1fe065523658c6.zip
Do not use Gnulib’s m4/wint_t.m4.
* admin/merge-gnulib: Remove m4/wint_t.m4 when merging. Fix typo so that warn-on-use.m4 is removed too. * configure.ac (gt_TYPE_WINT_T): New macro, replacing Gnulib’s. * m4/wint_t.m4: Remove.
Diffstat (limited to 'm4')
-rw-r--r--m4/wint_t.m462
1 files changed, 0 insertions, 62 deletions
diff --git a/m4/wint_t.m4 b/m4/wint_t.m4
deleted file mode 100644
index 65e25a4c38a..00000000000
--- a/m4/wint_t.m4
+++ /dev/null
@@ -1,62 +0,0 @@
1# wint_t.m4 serial 6
2dnl Copyright (C) 2003, 2007-2017 Free Software Foundation, Inc.
3dnl This file is free software; the Free Software Foundation
4dnl gives unlimited permission to copy and/or distribute it,
5dnl with or without modifications, as long as this notice is preserved.
6
7dnl From Bruno Haible.
8dnl Test whether <wchar.h> has the 'wint_t' type and whether gnulib's
9dnl <wchar.h> or <wctype.h> would, if present, override 'wint_t'.
10dnl Prerequisite: AC_PROG_CC
11
12AC_DEFUN([gt_TYPE_WINT_T],
13[
14 AC_CACHE_CHECK([for wint_t], [gt_cv_c_wint_t],
15 [AC_COMPILE_IFELSE(
16 [AC_LANG_PROGRAM(
17 [[
18/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
19 <wchar.h>.
20 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be included
21 before <wchar.h>. */
22#include <stddef.h>
23#include <stdio.h>
24#include <time.h>
25#include <wchar.h>
26 wint_t foo = (wchar_t)'\0';]],
27 [[]])],
28 [gt_cv_c_wint_t=yes],
29 [gt_cv_c_wint_t=no])])
30 if test $gt_cv_c_wint_t = yes; then
31 AC_DEFINE([HAVE_WINT_T], [1], [Define if you have the 'wint_t' type.])
32
33 dnl Determine whether gnulib's <wchar.h> or <wctype.h> would, if present,
34 dnl override 'wint_t'.
35 AC_CACHE_CHECK([whether wint_t is too small],
36 [gl_cv_type_wint_t_too_small],
37 [AC_COMPILE_IFELSE(
38 [AC_LANG_PROGRAM([[
39/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
40 <wchar.h>.
41 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
42 included before <wchar.h>. */
43#if !(defined __GLIBC__ && !defined __UCLIBC__)
44# include <stddef.h>
45# include <stdio.h>
46# include <time.h>
47#endif
48#include <wchar.h>
49 int verify[sizeof (wint_t) < sizeof (int) ? -1 : 1];
50 ]])],
51 [gl_cv_type_wint_t_too_small=no],
52 [gl_cv_type_wint_t_too_small=yes])])
53 if test $gl_cv_type_wint_t_too_small = yes; then
54 GNULIB_OVERRIDES_WINT_T=1
55 else
56 GNULIB_OVERRIDES_WINT_T=0
57 fi
58 else
59 GNULIB_OVERRIDES_WINT_T=0
60 fi
61 AC_SUBST([GNULIB_OVERRIDES_WINT_T])
62])