diff options
| author | Paul Eggert | 2017-01-01 02:04:35 -0800 |
|---|---|---|
| committer | Paul Eggert | 2017-01-01 02:04:55 -0800 |
| commit | aaf1f4a33c96831b9835574b8bfc6f71ec647fdd (patch) | |
| tree | 33be08da01d51675593eb32aa8442adf2eef49de /m4 | |
| parent | e6a782ee1af7e9d2fe52c3a8cddaf7f02c1ad150 (diff) | |
| download | emacs-aaf1f4a33c96831b9835574b8bfc6f71ec647fdd.tar.gz emacs-aaf1f4a33c96831b9835574b8bfc6f71ec647fdd.zip | |
Merge from gnulib, continued
* m4/wint_t.m4: New file, copied from gnulib.
Diffstat (limited to 'm4')
| -rw-r--r-- | m4/wint_t.m4 | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/m4/wint_t.m4 b/m4/wint_t.m4 new file mode 100644 index 00000000000..65e25a4c38a --- /dev/null +++ b/m4/wint_t.m4 | |||
| @@ -0,0 +1,62 @@ | |||
| 1 | # wint_t.m4 serial 6 | ||
| 2 | dnl Copyright (C) 2003, 2007-2017 Free Software Foundation, Inc. | ||
| 3 | dnl This file is free software; the Free Software Foundation | ||
| 4 | dnl gives unlimited permission to copy and/or distribute it, | ||
| 5 | dnl with or without modifications, as long as this notice is preserved. | ||
| 6 | |||
| 7 | dnl From Bruno Haible. | ||
| 8 | dnl Test whether <wchar.h> has the 'wint_t' type and whether gnulib's | ||
| 9 | dnl <wchar.h> or <wctype.h> would, if present, override 'wint_t'. | ||
| 10 | dnl Prerequisite: AC_PROG_CC | ||
| 11 | |||
| 12 | AC_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 | ]) | ||