Changeset 1964 for cpio/vendor/current/m4/mbrtowc.m4
- Timestamp:
- Feb 3, 2017, 2:02:34 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified cpio/vendor/current/m4/mbrtowc.m4 ¶
r118 r1964 1 # mbrtowc.m4 serial 162 dnl Copyright (C) 2001-2002, 2004-2005, 2008-201 0Free Software Foundation,1 # mbrtowc.m4 serial 26 2 dnl Copyright (C) 2001-2002, 2004-2005, 2008-2015 Free Software Foundation, 3 3 dnl Inc. 4 4 dnl This file is free software; the Free Software Foundation … … 12 12 AC_REQUIRE([AC_TYPE_MBSTATE_T]) 13 13 gl_MBSTATE_T_BROKEN 14 if test $REPLACE_MBSTATE_T = 1; then 15 REPLACE_MBRTOWC=1 16 fi 14 17 15 AC_CHECK_FUNCS_ONCE([mbrtowc]) 18 16 if test $ac_cv_func_mbrtowc = no; then 19 17 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 51 80 fi 52 81 ]) … … 80 109 REPLACE_MBSTATE_T=1 81 110 fi 82 if test $REPLACE_MBSTATE_T = 1; then83 gl_REPLACE_WCHAR_H84 fi85 111 ]) 86 112 … … 101 127 changequote(,)dnl 102 128 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" ;; 107 133 esac 108 134 changequote([,])dnl 109 135 if test $LOCALE_JA != none; then 110 AC_TRY_RUN([ 136 AC_RUN_IFELSE( 137 [AC_LANG_SOURCE([[ 111 138 #include <locale.h> 112 139 #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> 113 147 #include <wchar.h> 114 148 int main () … … 126 160 } 127 161 return 0; 128 }] ,162 }]])], 129 163 [gl_cv_func_mbrtowc_incomplete_state=yes], 130 164 [gl_cv_func_mbrtowc_incomplete_state=no], … … 156 190 changequote([,])dnl 157 191 if test $LOCALE_ZH_CN != none; then 158 AC_TRY_RUN([ 192 AC_RUN_IFELSE( 193 [AC_LANG_SOURCE([[ 159 194 #include <locale.h> 160 195 #include <stdlib.h> 161 196 #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> 162 204 #include <wchar.h> 163 205 int main () … … 178 220 } 179 221 return 0; 180 }] ,222 }]])], 181 223 [gl_cv_func_mbrtowc_sanitycheck=yes], 182 224 [gl_cv_func_mbrtowc_sanitycheck=no], … … 186 228 ]) 187 229 230 dnl Test whether mbrtowc supports a NULL pwc argument correctly. 231 dnl Result is gl_cv_func_mbrtowc_null_arg1. 232 233 AC_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. 243 changequote(,)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 250 changequote([,])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> 265 int 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 188 300 dnl 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 ],301 dnl Result is gl_cv_func_mbrtowc_null_arg2. 302 303 AC_DEFUN([gl_MBRTOWC_NULL_ARG2], 192 304 [ 193 305 AC_REQUIRE([AC_PROG_CC]) … … 195 307 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles 196 308 AC_CACHE_CHECK([whether mbrtowc handles a NULL string argument], 197 [gl_cv_func_mbrtowc_null_arg ],309 [gl_cv_func_mbrtowc_null_arg2], 198 310 [ 199 311 dnl Initial guess, used when cross-compiling or when no suitable locale … … 202 314 case "$host_os" in 203 315 # 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" ;; 205 317 # Guess yes otherwise. 206 *) gl_cv_func_mbrtowc_null_arg ="guessing yes" ;;318 *) gl_cv_func_mbrtowc_null_arg2="guessing yes" ;; 207 319 esac 208 320 changequote([,])dnl 209 321 if test $LOCALE_FR_UTF8 != none; then 210 AC_TRY_RUN([ 322 AC_RUN_IFELSE( 323 [AC_LANG_SOURCE([[ 211 324 #include <locale.h> 212 325 #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> 213 333 #include <wchar.h> 214 334 int main () … … 228 348 } 229 349 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 [:]) 231 354 fi 232 355 ]) … … 243 366 AC_REQUIRE([gt_LOCALE_FR_UTF8]) 244 367 AC_REQUIRE([gt_LOCALE_JA]) 245 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles368 AC_REQUIRE([AC_CANONICAL_HOST]) 246 369 AC_CACHE_CHECK([whether mbrtowc has a correct return value], 247 370 [gl_cv_func_mbrtowc_retval], … … 251 374 changequote(,)dnl 252 375 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" ;; 257 380 esac 258 381 changequote([,])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([[ 261 386 #include <locale.h> 262 387 #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> 263 395 #include <wchar.h> 264 396 int main () 265 397 { 398 int result = 0; 399 int found_some_locale = 0; 266 400 /* This fails on Solaris. */ 267 401 if (setlocale (LC_ALL, "$LOCALE_FR_UTF8") != NULL) … … 276 410 input[1] = '\0'; 277 411 if (mbrtowc (&wc, input + 2, 5, &state) != 1) 278 re turn1;412 result |= 1; 279 413 } 414 found_some_locale = 1; 280 415 } 281 416 /* This fails on HP-UX 11.11. */ … … 291 426 input[1] = '\0'; 292 427 if (mbrtowc (&wc, input + 2, 5, &state) != 2) 293 re turn 1;428 result |= 2; 294 429 } 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 }]])], 298 480 [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 ], 300 485 [:]) 301 486 fi … … 325 510 changequote([,])dnl 326 511 if test $LOCALE_ZH_CN != none; then 327 AC_TRY_RUN([ 512 AC_RUN_IFELSE( 513 [AC_LANG_SOURCE([[ 328 514 #include <locale.h> 329 515 #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> 330 523 #include <wchar.h> 331 524 int main () … … 342 535 } 343 536 return 0; 344 }] ,537 }]])], 345 538 [gl_cv_func_mbrtowc_nul_retval=yes], 346 539 [gl_cv_func_mbrtowc_nul_retval=no], … … 350 543 ]) 351 544 545 dnl Test whether mbrtowc returns the correct value on empty input. 546 547 AC_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. 556 changequote(,)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 563 changequote([,])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 352 580 # Prerequisites of lib/mbrtowc.c. 353 581 AC_DEFUN([gl_PREREQ_MBRTOWC], [ … … 358 586 dnl From Paul Eggert 359 587 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],[ 588 dnl This is an override of an autoconf macro. 589 364 590 AC_DEFUN([AC_FUNC_MBRTOWC], 365 591 [ … … 369 595 [AC_LINK_IFELSE( 370 596 [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>]], 372 605 [[wchar_t wc; 373 606 char const s[] = ""; … … 382 615 fi 383 616 ]) 384 ])
Note:
See TracChangeset
for help on using the changeset viewer.