Ignore:
Timestamp:
Feb 3, 2017, 2:02:34 PM (8 years ago)
Author:
Silvan Scherrer
Message:

cpio: update vendor to version 2.12

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified cpio/vendor/current/m4/mbrtowc.m4

    r118 r1964  
    1 # mbrtowc.m4 serial 16
    2 dnl Copyright (C) 2001-2002, 2004-2005, 2008-2010 Free Software Foundation,
     1# mbrtowc.m4 serial 26
     2dnl Copyright (C) 2001-2002, 2004-2005, 2008-2015 Free Software Foundation,
    33dnl Inc.
    44dnl This file is free software; the Free Software Foundation
     
    1212  AC_REQUIRE([AC_TYPE_MBSTATE_T])
    1313  gl_MBSTATE_T_BROKEN
    14   if test $REPLACE_MBSTATE_T = 1; then
    15     REPLACE_MBRTOWC=1
    16   fi
     14
    1715  AC_CHECK_FUNCS_ONCE([mbrtowc])
    1816  if test $ac_cv_func_mbrtowc = no; then
    1917    HAVE_MBRTOWC=0
    20   fi
    21   if test $HAVE_MBRTOWC != 0 && test $REPLACE_MBRTOWC != 1; then
    22     gl_MBRTOWC_NULL_ARG
    23     gl_MBRTOWC_RETVAL
    24     gl_MBRTOWC_NUL_RETVAL
    25     case "$gl_cv_func_mbrtowc_null_arg" in
    26       *yes) ;;
    27       *) AC_DEFINE([MBRTOWC_NULL_ARG_BUG], [1],
    28            [Define if the mbrtowc function has the NULL string argument bug.])
    29          REPLACE_MBRTOWC=1
    30          ;;
    31     esac
    32     case "$gl_cv_func_mbrtowc_retval" in
    33       *yes) ;;
    34       *) AC_DEFINE([MBRTOWC_RETVAL_BUG], [1],
    35            [Define if the mbrtowc function returns a wrong return value.])
    36          REPLACE_MBRTOWC=1
    37          ;;
    38     esac
    39     case "$gl_cv_func_mbrtowc_nul_retval" in
    40       *yes) ;;
    41       *) AC_DEFINE([MBRTOWC_NUL_RETVAL_BUG], [1],
    42            [Define if the mbrtowc function does not return 0 for a NUL character.])
    43          REPLACE_MBRTOWC=1
    44          ;;
    45     esac
    46   fi
    47   if test $HAVE_MBRTOWC = 0 || test $REPLACE_MBRTOWC = 1; then
    48     gl_REPLACE_WCHAR_H
    49     AC_LIBOBJ([mbrtowc])
    50     gl_PREREQ_MBRTOWC
     18    AC_CHECK_DECLS([mbrtowc],,, [[
     19/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
     20   <wchar.h>.
     21   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
     22   included before <wchar.h>.  */
     23#include <stddef.h>
     24#include <stdio.h>
     25#include <time.h>
     26#include <wchar.h>
     27]])
     28    if test $ac_cv_have_decl_mbrtowc = yes; then
     29      dnl On Minix 3.1.8, the system's <wchar.h> declares mbrtowc() although
     30      dnl it does not have the function. Avoid a collision with gnulib's
     31      dnl replacement.
     32      REPLACE_MBRTOWC=1
     33    fi
     34  else
     35    if test $REPLACE_MBSTATE_T = 1; then
     36      REPLACE_MBRTOWC=1
     37    else
     38      gl_MBRTOWC_NULL_ARG1
     39      gl_MBRTOWC_NULL_ARG2
     40      gl_MBRTOWC_RETVAL
     41      gl_MBRTOWC_NUL_RETVAL
     42      gl_MBRTOWC_EMPTY_INPUT
     43      case "$gl_cv_func_mbrtowc_null_arg1" in
     44        *yes) ;;
     45        *) AC_DEFINE([MBRTOWC_NULL_ARG1_BUG], [1],
     46             [Define if the mbrtowc function has the NULL pwc argument bug.])
     47           REPLACE_MBRTOWC=1
     48           ;;
     49      esac
     50      case "$gl_cv_func_mbrtowc_null_arg2" in
     51        *yes) ;;
     52        *) AC_DEFINE([MBRTOWC_NULL_ARG2_BUG], [1],
     53             [Define if the mbrtowc function has the NULL string argument bug.])
     54           REPLACE_MBRTOWC=1
     55           ;;
     56      esac
     57      case "$gl_cv_func_mbrtowc_retval" in
     58        *yes) ;;
     59        *) AC_DEFINE([MBRTOWC_RETVAL_BUG], [1],
     60             [Define if the mbrtowc function returns a wrong return value.])
     61           REPLACE_MBRTOWC=1
     62           ;;
     63      esac
     64      case "$gl_cv_func_mbrtowc_nul_retval" in
     65        *yes) ;;
     66        *) AC_DEFINE([MBRTOWC_NUL_RETVAL_BUG], [1],
     67             [Define if the mbrtowc function does not return 0 for a NUL character.])
     68           REPLACE_MBRTOWC=1
     69           ;;
     70      esac
     71      case "$gl_cv_func_mbrtowc_empty_input" in
     72        *yes) ;;
     73        *) AC_DEFINE([MBRTOWC_EMPTY_INPUT_BUG], [1],
     74             [Define if the mbrtowc function does not return (size_t) -2
     75              for empty input.])
     76           REPLACE_MBRTOWC=1
     77           ;;
     78      esac
     79    fi
    5180  fi
    5281])
     
    80109    REPLACE_MBSTATE_T=1
    81110  fi
    82   if test $REPLACE_MBSTATE_T = 1; then
    83     gl_REPLACE_WCHAR_H
    84   fi
    85111])
    86112
     
    101127changequote(,)dnl
    102128      case "$host_os" in
    103               # Guess no on AIX and OSF/1.
    104         osf*) gl_cv_func_mbrtowc_incomplete_state="guessing no" ;;
    105               # Guess yes otherwise.
    106         *)    gl_cv_func_mbrtowc_incomplete_state="guessing yes" ;;
     129                     # Guess no on AIX and OSF/1.
     130        aix* | osf*) gl_cv_func_mbrtowc_incomplete_state="guessing no" ;;
     131                     # Guess yes otherwise.
     132        *)           gl_cv_func_mbrtowc_incomplete_state="guessing yes" ;;
    107133      esac
    108134changequote([,])dnl
    109135      if test $LOCALE_JA != none; then
    110         AC_TRY_RUN([
     136        AC_RUN_IFELSE(
     137          [AC_LANG_SOURCE([[
    111138#include <locale.h>
    112139#include <string.h>
     140/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
     141   <wchar.h>.
     142   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
     143   included before <wchar.h>.  */
     144#include <stddef.h>
     145#include <stdio.h>
     146#include <time.h>
    113147#include <wchar.h>
    114148int main ()
     
    126160    }
    127161  return 0;
    128 }],
     162}]])],
    129163          [gl_cv_func_mbrtowc_incomplete_state=yes],
    130164          [gl_cv_func_mbrtowc_incomplete_state=no],
     
    156190changequote([,])dnl
    157191      if test $LOCALE_ZH_CN != none; then
    158         AC_TRY_RUN([
     192        AC_RUN_IFELSE(
     193          [AC_LANG_SOURCE([[
    159194#include <locale.h>
    160195#include <stdlib.h>
    161196#include <string.h>
     197/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
     198   <wchar.h>.
     199   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
     200   included before <wchar.h>.  */
     201#include <stddef.h>
     202#include <stdio.h>
     203#include <time.h>
    162204#include <wchar.h>
    163205int main ()
     
    178220    }
    179221  return 0;
    180 }],
     222}]])],
    181223          [gl_cv_func_mbrtowc_sanitycheck=yes],
    182224          [gl_cv_func_mbrtowc_sanitycheck=no],
     
    186228])
    187229
     230dnl Test whether mbrtowc supports a NULL pwc argument correctly.
     231dnl Result is gl_cv_func_mbrtowc_null_arg1.
     232
     233AC_DEFUN([gl_MBRTOWC_NULL_ARG1],
     234[
     235  AC_REQUIRE([AC_PROG_CC])
     236  AC_REQUIRE([gt_LOCALE_FR_UTF8])
     237  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
     238  AC_CACHE_CHECK([whether mbrtowc handles a NULL pwc argument],
     239    [gl_cv_func_mbrtowc_null_arg1],
     240    [
     241      dnl Initial guess, used when cross-compiling or when no suitable locale
     242      dnl is present.
     243changequote(,)dnl
     244      case "$host_os" in
     245                  # Guess no on Solaris.
     246        solaris*) gl_cv_func_mbrtowc_null_arg1="guessing no" ;;
     247                  # Guess yes otherwise.
     248        *)        gl_cv_func_mbrtowc_null_arg1="guessing yes" ;;
     249      esac
     250changequote([,])dnl
     251      if test $LOCALE_FR_UTF8 != none; then
     252        AC_RUN_IFELSE(
     253          [AC_LANG_SOURCE([[
     254#include <locale.h>
     255#include <stdlib.h>
     256#include <string.h>
     257/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
     258   <wchar.h>.
     259   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
     260   included before <wchar.h>.  */
     261#include <stddef.h>
     262#include <stdio.h>
     263#include <time.h>
     264#include <wchar.h>
     265int main ()
     266{
     267  int result = 0;
     268
     269  if (setlocale (LC_ALL, "$LOCALE_FR_UTF8") != NULL)
     270    {
     271      char input[] = "\303\237er";
     272      mbstate_t state;
     273      wchar_t wc;
     274      size_t ret;
     275
     276      memset (&state, '\0', sizeof (mbstate_t));
     277      wc = (wchar_t) 0xBADFACE;
     278      ret = mbrtowc (&wc, input, 5, &state);
     279      if (ret != 2)
     280        result |= 1;
     281      if (!mbsinit (&state))
     282        result |= 2;
     283
     284      memset (&state, '\0', sizeof (mbstate_t));
     285      ret = mbrtowc (NULL, input, 5, &state);
     286      if (ret != 2) /* Solaris 7 fails here: ret is -1.  */
     287        result |= 4;
     288      if (!mbsinit (&state))
     289        result |= 8;
     290    }
     291  return result;
     292}]])],
     293          [gl_cv_func_mbrtowc_null_arg1=yes],
     294          [gl_cv_func_mbrtowc_null_arg1=no],
     295          [:])
     296      fi
     297    ])
     298])
     299
    188300dnl Test whether mbrtowc supports a NULL string argument correctly.
    189 dnl Result is gl_cv_func_mbrtowc_null_arg.
    190 
    191 AC_DEFUN([gl_MBRTOWC_NULL_ARG],
     301dnl Result is gl_cv_func_mbrtowc_null_arg2.
     302
     303AC_DEFUN([gl_MBRTOWC_NULL_ARG2],
    192304[
    193305  AC_REQUIRE([AC_PROG_CC])
     
    195307  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
    196308  AC_CACHE_CHECK([whether mbrtowc handles a NULL string argument],
    197     [gl_cv_func_mbrtowc_null_arg],
     309    [gl_cv_func_mbrtowc_null_arg2],
    198310    [
    199311      dnl Initial guess, used when cross-compiling or when no suitable locale
     
    202314      case "$host_os" in
    203315              # Guess no on OSF/1.
    204         osf*) gl_cv_func_mbrtowc_null_arg="guessing no" ;;
     316        osf*) gl_cv_func_mbrtowc_null_arg2="guessing no" ;;
    205317              # Guess yes otherwise.
    206         *)    gl_cv_func_mbrtowc_null_arg="guessing yes" ;;
     318        *)    gl_cv_func_mbrtowc_null_arg2="guessing yes" ;;
    207319      esac
    208320changequote([,])dnl
    209321      if test $LOCALE_FR_UTF8 != none; then
    210         AC_TRY_RUN([
     322        AC_RUN_IFELSE(
     323          [AC_LANG_SOURCE([[
    211324#include <locale.h>
    212325#include <string.h>
     326/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
     327   <wchar.h>.
     328   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
     329   included before <wchar.h>.  */
     330#include <stddef.h>
     331#include <stdio.h>
     332#include <time.h>
    213333#include <wchar.h>
    214334int main ()
     
    228348    }
    229349  return 0;
    230 }], [gl_cv_func_mbrtowc_null_arg=yes], [gl_cv_func_mbrtowc_null_arg=no], [:])
     350}]])],
     351          [gl_cv_func_mbrtowc_null_arg2=yes],
     352          [gl_cv_func_mbrtowc_null_arg2=no],
     353          [:])
    231354      fi
    232355    ])
     
    243366  AC_REQUIRE([gt_LOCALE_FR_UTF8])
    244367  AC_REQUIRE([gt_LOCALE_JA])
    245   AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
     368  AC_REQUIRE([AC_CANONICAL_HOST])
    246369  AC_CACHE_CHECK([whether mbrtowc has a correct return value],
    247370    [gl_cv_func_mbrtowc_retval],
     
    251374changequote(,)dnl
    252375      case "$host_os" in
    253                           # Guess no on HP-UX and Solaris.
    254         hpux* | solaris*) gl_cv_func_mbrtowc_retval="guessing no" ;;
    255                           # Guess yes otherwise.
    256         *)                gl_cv_func_mbrtowc_retval="guessing yes" ;;
     376                                   # Guess no on HP-UX, Solaris, native Windows.
     377        hpux* | solaris* | mingw*) gl_cv_func_mbrtowc_retval="guessing no" ;;
     378                                   # Guess yes otherwise.
     379        *)                         gl_cv_func_mbrtowc_retval="guessing yes" ;;
    257380      esac
    258381changequote([,])dnl
    259       if test $LOCALE_FR_UTF8 != none || test $LOCALE_JA != none; then
    260         AC_TRY_RUN([
     382      if test $LOCALE_FR_UTF8 != none || test $LOCALE_JA != none \
     383         || { case "$host_os" in mingw*) true;; *) false;; esac; }; then
     384        AC_RUN_IFELSE(
     385          [AC_LANG_SOURCE([[
    261386#include <locale.h>
    262387#include <string.h>
     388/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
     389   <wchar.h>.
     390   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
     391   included before <wchar.h>.  */
     392#include <stddef.h>
     393#include <stdio.h>
     394#include <time.h>
    263395#include <wchar.h>
    264396int main ()
    265397{
     398  int result = 0;
     399  int found_some_locale = 0;
    266400  /* This fails on Solaris.  */
    267401  if (setlocale (LC_ALL, "$LOCALE_FR_UTF8") != NULL)
     
    276410          input[1] = '\0';
    277411          if (mbrtowc (&wc, input + 2, 5, &state) != 1)
    278             return 1;
     412            result |= 1;
    279413        }
     414      found_some_locale = 1;
    280415    }
    281416  /* This fails on HP-UX 11.11.  */
     
    291426          input[1] = '\0';
    292427          if (mbrtowc (&wc, input + 2, 5, &state) != 2)
    293             return 1;
     428            result |= 2;
    294429        }
    295     }
    296   return 0;
    297 }],
     430      found_some_locale = 1;
     431    }
     432  /* This fails on native Windows.  */
     433  if (setlocale (LC_ALL, "Japanese_Japan.932") != NULL)
     434    {
     435      char input[] = "<\223\372\226\173\214\352>"; /* "<日本語>" */
     436      mbstate_t state;
     437      wchar_t wc;
     438
     439      memset (&state, '\0', sizeof (mbstate_t));
     440      if (mbrtowc (&wc, input + 3, 1, &state) == (size_t)(-2))
     441        {
     442          input[3] = '\0';
     443          if (mbrtowc (&wc, input + 4, 4, &state) != 1)
     444            result |= 4;
     445        }
     446      found_some_locale = 1;
     447    }
     448  if (setlocale (LC_ALL, "Chinese_Taiwan.950") != NULL)
     449    {
     450      char input[] = "<\244\351\245\273\273\171>"; /* "<日本語>" */
     451      mbstate_t state;
     452      wchar_t wc;
     453
     454      memset (&state, '\0', sizeof (mbstate_t));
     455      if (mbrtowc (&wc, input + 3, 1, &state) == (size_t)(-2))
     456        {
     457          input[3] = '\0';
     458          if (mbrtowc (&wc, input + 4, 4, &state) != 1)
     459            result |= 8;
     460        }
     461      found_some_locale = 1;
     462    }
     463  if (setlocale (LC_ALL, "Chinese_China.936") != NULL)
     464    {
     465      char input[] = "<\310\325\261\276\325\132>"; /* "<日本語>" */
     466      mbstate_t state;
     467      wchar_t wc;
     468
     469      memset (&state, '\0', sizeof (mbstate_t));
     470      if (mbrtowc (&wc, input + 3, 1, &state) == (size_t)(-2))
     471        {
     472          input[3] = '\0';
     473          if (mbrtowc (&wc, input + 4, 4, &state) != 1)
     474            result |= 16;
     475        }
     476      found_some_locale = 1;
     477    }
     478  return (found_some_locale ? result : 77);
     479}]])],
    298480          [gl_cv_func_mbrtowc_retval=yes],
    299           [gl_cv_func_mbrtowc_retval=no],
     481          [if test $? != 77; then
     482             gl_cv_func_mbrtowc_retval=no
     483           fi
     484          ],
    300485          [:])
    301486      fi
     
    325510changequote([,])dnl
    326511      if test $LOCALE_ZH_CN != none; then
    327         AC_TRY_RUN([
     512        AC_RUN_IFELSE(
     513          [AC_LANG_SOURCE([[
    328514#include <locale.h>
    329515#include <string.h>
     516/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
     517   <wchar.h>.
     518   BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
     519   included before <wchar.h>.  */
     520#include <stddef.h>
     521#include <stdio.h>
     522#include <time.h>
    330523#include <wchar.h>
    331524int main ()
     
    342535    }
    343536  return 0;
    344 }],
     537}]])],
    345538          [gl_cv_func_mbrtowc_nul_retval=yes],
    346539          [gl_cv_func_mbrtowc_nul_retval=no],
     
    350543])
    351544
     545dnl Test whether mbrtowc returns the correct value on empty input.
     546
     547AC_DEFUN([gl_MBRTOWC_EMPTY_INPUT],
     548[
     549  AC_REQUIRE([AC_PROG_CC])
     550  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
     551  AC_CACHE_CHECK([whether mbrtowc works on empty input],
     552    [gl_cv_func_mbrtowc_empty_input],
     553    [
     554      dnl Initial guess, used when cross-compiling or when no suitable locale
     555      dnl is present.
     556changequote(,)dnl
     557      case "$host_os" in
     558                     # Guess no on AIX and glibc systems.
     559        aix* | *-gnu*)
     560                    gl_cv_func_mbrtowc_empty_input="guessing no" ;;
     561        *)          gl_cv_func_mbrtowc_empty_input="guessing yes" ;;
     562      esac
     563changequote([,])dnl
     564      AC_RUN_IFELSE(
     565        [AC_LANG_SOURCE([[
     566           #include <wchar.h>
     567           static wchar_t wc;
     568           static mbstate_t mbs;
     569           int
     570           main (void)
     571           {
     572             return mbrtowc (&wc, "", 0, &mbs) == (size_t) -2;
     573           }]])],
     574        [gl_cv_func_mbrtowc_empty_input=no],
     575        [gl_cv_func_mbrtowc_empty_input=yes],
     576        [:])
     577    ])
     578])
     579
    352580# Prerequisites of lib/mbrtowc.c.
    353581AC_DEFUN([gl_PREREQ_MBRTOWC], [
     
    358586dnl From Paul Eggert
    359587
    360 dnl This override of an autoconf macro can be removed when autoconf 2.60 or
    361 dnl newer can be assumed everywhere.
    362 
    363 m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]),[2.60]),[-1],[
     588dnl This is an override of an autoconf macro.
     589
    364590AC_DEFUN([AC_FUNC_MBRTOWC],
    365591[
     
    369595    [AC_LINK_IFELSE(
    370596       [AC_LANG_PROGRAM(
    371             [[#include <wchar.h>]],
     597            [[/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be
     598                 included before <wchar.h>.
     599                 BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h>
     600                 must be included before <wchar.h>.  */
     601              #include <stddef.h>
     602              #include <stdio.h>
     603              #include <time.h>
     604              #include <wchar.h>]],
    372605            [[wchar_t wc;
    373606              char const s[] = "";
     
    382615  fi
    383616])
    384 ])
Note: See TracChangeset for help on using the changeset viewer.