gkeating    02/11/22 16:23:10

  Modified:    live/gcc3/gcc aclocal.m4 configure
  Log:
  Merge this patch from FSF:
  2002-11-22  Geoffrey Keating  <[EMAIL PROTECTED]>
  
          * aclocal.m4 (ac_cv_func_mmap_dev_zero): Darwin does not
          allow mmap from /dev/zero.  Don't make decisions for the host
          based on presence or absence of /dev/zero on the build machine.
          (ac_cv_func_mmap_anon): Darwin does have working MMAP_ANON.
          (AC_FUNC_MMAP_FILE): Darwin does have mmap of a file.
          * configure: Regenerate.
  
  Revision  Changes    Path
  1.9       +13 -8     src/live/gcc3/gcc/aclocal.m4
  
  Index: aclocal.m4
  ===================================================================
  RCS file: /cvs/Darwin/src/live/gcc3/gcc/aclocal.m4,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- aclocal.m4        2002/03/14 07:28:40     1.8
  +++ aclocal.m4        2002/11/23 00:23:08     1.9
  @@ -660,14 +660,13 @@
    then ac_cv_func_mmap_dev_zero=no
    else ac_cv_func_mmap_dev_zero=buggy
    fi],
  - # If this is not cygwin, and /dev/zero is a character device, it's probably
  - # safe to assume it works.
  + # When cross-building, assume that this works, unless we know it
  + # doesn't.  Of course, we have no way of knowing if there even is a /dev/zero
  + # on the host, let alone whether mmap will work on it.
    [case "$host_os" in
      cygwin* | win32 | pe | mingw* ) ac_cv_func_mmap_dev_zero=buggy ;;
  -   * ) if test -c /dev/zero
  -       then ac_cv_func_mmap_dev_zero=yes
  -       else ac_cv_func_mmap_dev_zero=no
  -       fi ;;
  +   darwin* ) ac_cv_func_mmap_dev_zero=no ;;
  +   * ) ac_cv_func_mmap_dev_zero=yes ;;
     esac])
   ])
   if test $ac_cv_func_mmap_dev_zero = yes; then
  @@ -687,7 +686,10 @@
    fi],
    # Unlike /dev/zero, it is not safe to assume MAP_ANON(YMOUS) works
    # just because it's there. Some SCO Un*xen define it but don't implement it.
  - ac_cv_func_mmap_anon=no)
  + [case "$host_os" in
  +   darwin* ) ac_cv_func_mmap_anon=yes ;;
  +   * ) ac_cv_func_mmap_anon=no ;;
  +  esac])
   ])
   if test $ac_cv_func_mmap_anon = yes; then
     AC_DEFINE(HAVE_MMAP_ANON, 1,
  @@ -740,7 +742,10 @@
   
     exit(0);
   }], ac_cv_func_mmap_file=yes, ac_cv_func_mmap_file=no,
  -ac_cv_func_mmap_file=no)])
  + [case "$host_os" in
  +   darwin* ) ac_cv_func_mmap_file=yes ;;
  +   * ) ac_cv_func_mmap_file=no ;;
  +  esac])])
   if test $ac_cv_func_mmap_file = yes; then
     AC_DEFINE(HAVE_MMAP_FILE, 1,
            [Define if read-only mmap of a plain file works.])
  
  
  
  1.65      +157 -152  src/live/gcc3/gcc/configure
  
  Index: configure
  ===================================================================
  RCS file: /cvs/Darwin/src/live/gcc3/gcc/configure,v
  retrieving revision 1.64
  retrieving revision 1.65
  diff -u -r1.64 -r1.65
  --- configure 2002/11/21 00:06:43     1.64
  +++ configure 2002/11/23 00:23:08     1.65
  @@ -4351,22 +4351,21 @@
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     if test "$cross_compiling" = yes; then
  -  # If this is not cygwin, and /dev/zero is a character device, it's probably
  - # safe to assume it works.
  +  # When cross-building, assume that this works, unless we know it
  + # doesn't.  Of course, we have no way of knowing if there even is a /dev/zero
  + # on the host, let alone whether mmap will work on it.
    case "$host_os" in
      cygwin* | win32 | pe | mingw* ) ac_cv_func_mmap_dev_zero=buggy ;;
  -   * ) if test -c /dev/zero
  -       then ac_cv_func_mmap_dev_zero=yes
  -       else ac_cv_func_mmap_dev_zero=no
  -       fi ;;
  +   darwin* ) ac_cv_func_mmap_dev_zero=no ;;
  +   * ) ac_cv_func_mmap_dev_zero=yes ;;
     esac
   else
     cat > conftest.$ac_ext <<EOF
  -#line 4366 "configure"
  +#line 4365 "configure"
   #include "confdefs.h"
   #include "ct-mmap.inc"
   EOF
  -if { (eval echo configure:4370: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  +if { (eval echo configure:4369: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
   then
     ac_cv_func_mmap_dev_zero=yes
   else
  @@ -4393,22 +4392,25 @@
   fi
   
   echo $ac_n "checking for working mmap with MAP_ANON(YMOUS)""... $ac_c" 1>&6
  -echo "configure:4397: checking for working mmap with MAP_ANON(YMOUS)" >&5
  +echo "configure:4396: checking for working mmap with MAP_ANON(YMOUS)" >&5
   if eval "test \"`echo '$''{'ac_cv_func_mmap_anon'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     if test "$cross_compiling" = yes; then
     # Unlike /dev/zero, it is not safe to assume MAP_ANON(YMOUS) works
    # just because it's there. Some SCO Un*xen define it but don't implement it.
  - ac_cv_func_mmap_anon=no
  + case "$host_os" in
  +   darwin* ) ac_cv_func_mmap_anon=yes ;;
  +   * ) ac_cv_func_mmap_anon=no ;;
  +  esac
   else
     cat > conftest.$ac_ext <<EOF
  -#line 4407 "configure"
  +#line 4409 "configure"
   #include "confdefs.h"
   #define USE_MAP_ANON
   #include "ct-mmap.inc"
   EOF
  -if { (eval echo configure:4412: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  +if { (eval echo configure:4414: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
   then
     ac_cv_func_mmap_anon=yes
   else
  @@ -4436,7 +4438,7 @@
   rm -f ct-mmap.inc
   
   echo $ac_n "checking for working mmap of a file""... $ac_c" 1>&6
  -echo "configure:4440: checking for working mmap of a file" >&5
  +echo "configure:4442: checking for working mmap of a file" >&5
   if eval "test \"`echo '$''{'ac_cv_func_mmap_file'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -4448,10 +4450,13 @@
   done > conftestdata$$
   
   if test "$cross_compiling" = yes; then
  -  ac_cv_func_mmap_file=no
  +  case "$host_os" in
  +   darwin* ) ac_cv_func_mmap_file=yes ;;
  +   * ) ac_cv_func_mmap_file=no ;;
  +  esac
   else
     cat > conftest.$ac_ext <<EOF
  -#line 4455 "configure"
  +#line 4460 "configure"
   #include "confdefs.h"
   
   /* Test by Zack Weinberg.  Modified from MMAP_ANYWHERE test by
  @@ -4488,7 +4493,7 @@
     exit(0);
   }
   EOF
  -if { (eval echo configure:4492: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  +if { (eval echo configure:4497: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
   then
     ac_cv_func_mmap_file=yes
   else
  @@ -4527,7 +4532,7 @@
   
   
     echo $ac_n "checking for iconv""... $ac_c" 1>&6
  -echo "configure:4531: checking for iconv" >&5
  +echo "configure:4536: checking for iconv" >&5
   if eval "test \"`echo '$''{'am_cv_func_iconv'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -4535,7 +4540,7 @@
       am_cv_func_iconv="no, consider installing GNU libiconv"
       am_cv_lib_iconv=no
       cat > conftest.$ac_ext <<EOF
  -#line 4539 "configure"
  +#line 4544 "configure"
   #include "confdefs.h"
   #include <stdlib.h>
   #include <iconv.h>
  @@ -4545,7 +4550,7 @@
          iconv_close(cd);
   ; return 0; }
   EOF
  -if { (eval echo configure:4549: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:4554: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     am_cv_func_iconv=yes
   else
  @@ -4557,7 +4562,7 @@
         am_save_LIBS="$LIBS"
         LIBS="$LIBS $am_cv_libiconv_ldpath -liconv"
         cat > conftest.$ac_ext <<EOF
  -#line 4561 "configure"
  +#line 4566 "configure"
   #include "confdefs.h"
   #include <stdlib.h>
   #include <iconv.h>
  @@ -4567,7 +4572,7 @@
            iconv_close(cd);
   ; return 0; }
   EOF
  -if { (eval echo configure:4571: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:4576: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     am_cv_lib_iconv=yes
           am_cv_func_iconv=yes
  @@ -4588,13 +4593,13 @@
   EOF
   
       echo $ac_n "checking for iconv declaration""... $ac_c" 1>&6
  -echo "configure:4592: checking for iconv declaration" >&5
  +echo "configure:4597: checking for iconv declaration" >&5
       if eval "test \"`echo '$''{'am_cv_proto_iconv'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     
         cat > conftest.$ac_ext <<EOF
  -#line 4598 "configure"
  +#line 4603 "configure"
   #include "confdefs.h"
   
   #include <stdlib.h>
  @@ -4613,7 +4618,7 @@
   
   ; return 0; }
   EOF
  -if { (eval echo configure:4617: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
  +if { (eval echo configure:4622: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
     rm -rf conftest*
     am_cv_proto_iconv_arg1=""
   else
  @@ -4651,12 +4656,12 @@
   do
     ac_tr_decl=HAVE_DECL_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
   echo $ac_n "checking whether $ac_func is declared""... $ac_c" 1>&6
  -echo "configure:4655: checking whether $ac_func is declared" >&5
  +echo "configure:4660: checking whether $ac_func is declared" >&5
   if eval "test \"`echo '$''{'gcc_cv_have_decl_$ac_func'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 4660 "configure"
  +#line 4665 "configure"
   #include "confdefs.h"
   #undef $ac_tr_decl
   #define $ac_tr_decl 1
  @@ -4670,7 +4675,7 @@
   #endif
   ; return 0; }
   EOF
  -if { (eval echo configure:4674: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
  +if { (eval echo configure:4679: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
     rm -rf conftest*
     eval "gcc_cv_have_decl_$ac_func=yes"
   else
  @@ -4769,12 +4774,12 @@
   do
     ac_tr_decl=HAVE_DECL_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
   echo $ac_n "checking whether $ac_func is declared""... $ac_c" 1>&6
  -echo "configure:4773: checking whether $ac_func is declared" >&5
  +echo "configure:4778: checking whether $ac_func is declared" >&5
   if eval "test \"`echo '$''{'gcc_cv_have_decl_$ac_func'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 4778 "configure"
  +#line 4783 "configure"
   #include "confdefs.h"
   #undef $ac_tr_decl
   #define $ac_tr_decl 1
  @@ -4792,7 +4797,7 @@
   #endif
   ; return 0; }
   EOF
  -if { (eval echo configure:4796: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
  +if { (eval echo configure:4801: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
     rm -rf conftest*
     eval "gcc_cv_have_decl_$ac_func=yes"
   else
  @@ -4834,12 +4839,12 @@
   do
     ac_tr_decl=HAVE_DECL_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
   echo $ac_n "checking whether $ac_func is declared""... $ac_c" 1>&6
  -echo "configure:4838: checking whether $ac_func is declared" >&5
  +echo "configure:4843: checking whether $ac_func is declared" >&5
   if eval "test \"`echo '$''{'gcc_cv_have_decl_$ac_func'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 4843 "configure"
  +#line 4848 "configure"
   #include "confdefs.h"
   #undef $ac_tr_decl
   #define $ac_tr_decl 1
  @@ -4857,7 +4862,7 @@
   #endif
   ; return 0; }
   EOF
  -if { (eval echo configure:4861: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
  +if { (eval echo configure:4866: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
     rm -rf conftest*
     eval "gcc_cv_have_decl_$ac_func=yes"
   else
  @@ -4891,13 +4896,13 @@
   
   # More time-related stuff.
   echo $ac_n "checking for struct tms""... $ac_c" 1>&6
  -echo "configure:4895: checking for struct tms" >&5
  +echo "configure:4900: checking for struct tms" >&5
   if eval "test \"`echo '$''{'ac_cv_struct_tms'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     
   cat > conftest.$ac_ext <<EOF
  -#line 4901 "configure"
  +#line 4906 "configure"
   #include "confdefs.h"
   
   #include "ansidecl.h"
  @@ -4910,7 +4915,7 @@
   struct tms tms;
   ; return 0; }
   EOF
  -if { (eval echo configure:4914: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
  +if { (eval echo configure:4919: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
     rm -rf conftest*
     ac_cv_struct_tms=yes
   else
  @@ -4933,13 +4938,13 @@
   # use gcc_cv_* here because this doesn't match the behavior of AC_CHECK_TYPE.
   # revisit after autoconf 2.50.
   echo $ac_n "checking for clock_t""... $ac_c" 1>&6
  -echo "configure:4937: checking for clock_t" >&5
  +echo "configure:4942: checking for clock_t" >&5
   if eval "test \"`echo '$''{'gcc_cv_type_clock_t'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     
   cat > conftest.$ac_ext <<EOF
  -#line 4943 "configure"
  +#line 4948 "configure"
   #include "confdefs.h"
   
   #include "ansidecl.h"
  @@ -4949,7 +4954,7 @@
   clock_t x;
   ; return 0; }
   EOF
  -if { (eval echo configure:4953: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
  +if { (eval echo configure:4958: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
     rm -rf conftest*
     gcc_cv_type_clock_t=yes
   else
  @@ -4974,12 +4979,12 @@
   
   # mkdir takes a single argument on some systems. 
   echo $ac_n "checking if mkdir takes one argument""... $ac_c" 1>&6
  -echo "configure:4978: checking if mkdir takes one argument" >&5
  +echo "configure:4983: checking if mkdir takes one argument" >&5
   if eval "test \"`echo '$''{'gcc_cv_mkdir_takes_one_arg'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 4983 "configure"
  +#line 4988 "configure"
   #include "confdefs.h"
   
   #include <sys/types.h>
  @@ -4996,7 +5001,7 @@
   mkdir ("foo", 0);
   ; return 0; }
   EOF
  -if { (eval echo configure:5000: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
  +if { (eval echo configure:5005: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
     rm -rf conftest*
     gcc_cv_mkdir_takes_one_arg=no
   else
  @@ -5279,14 +5284,14 @@
   
               
   echo $ac_n "checking for library containing strerror""... $ac_c" 1>&6
  -echo "configure:5283: checking for library containing strerror" >&5
  +echo "configure:5288: checking for library containing strerror" >&5
   if eval "test \"`echo '$''{'ac_cv_search_strerror'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     ac_func_search_save_LIBS="$LIBS"
   ac_cv_search_strerror="no"
   cat > conftest.$ac_ext <<EOF
  -#line 5290 "configure"
  +#line 5295 "configure"
   #include "confdefs.h"
   /* Override any gcc2 internal prototype to avoid an error.  */
   /* We use char because int might match the return type of a gcc2
  @@ -5297,7 +5302,7 @@
   strerror()
   ; return 0; }
   EOF
  -if { (eval echo configure:5301: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:5306: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     ac_cv_search_strerror="none required"
   else
  @@ -5308,7 +5313,7 @@
   test "$ac_cv_search_strerror" = "no" && for i in cposix; do
   LIBS="-l$i  $ac_func_search_save_LIBS"
   cat > conftest.$ac_ext <<EOF
  -#line 5312 "configure"
  +#line 5317 "configure"
   #include "confdefs.h"
   /* Override any gcc2 internal prototype to avoid an error.  */
   /* We use char because int might match the return type of a gcc2
  @@ -5319,7 +5324,7 @@
   strerror()
   ; return 0; }
   EOF
  -if { (eval echo configure:5323: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:5328: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     ac_cv_search_strerror="-l$i"
   break
  @@ -5342,12 +5347,12 @@
     
   
   echo $ac_n "checking for working const""... $ac_c" 1>&6
  -echo "configure:5346: checking for working const" >&5
  +echo "configure:5351: checking for working const" >&5
   if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 5351 "configure"
  +#line 5356 "configure"
   #include "confdefs.h"
   
   int main() {
  @@ -5396,7 +5401,7 @@
   
   ; return 0; }
   EOF
  -if { (eval echo configure:5400: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
  +if { (eval echo configure:5405: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
     rm -rf conftest*
     ac_cv_c_const=yes
   else
  @@ -5417,12 +5422,12 @@
   fi
   
   echo $ac_n "checking for off_t""... $ac_c" 1>&6
  -echo "configure:5421: checking for off_t" >&5
  +echo "configure:5426: checking for off_t" >&5
   if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 5426 "configure"
  +#line 5431 "configure"
   #include "confdefs.h"
   #include <sys/types.h>
   #if STDC_HEADERS
  @@ -5450,12 +5455,12 @@
   fi
   
   echo $ac_n "checking for size_t""... $ac_c" 1>&6
  -echo "configure:5454: checking for size_t" >&5
  +echo "configure:5459: checking for size_t" >&5
   if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 5459 "configure"
  +#line 5464 "configure"
   #include "confdefs.h"
   #include <sys/types.h>
   #if STDC_HEADERS
  @@ -5485,19 +5490,19 @@
   # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
   # for constant arguments.  Useless!
   echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6
  -echo "configure:5489: checking for working alloca.h" >&5
  +echo "configure:5494: checking for working alloca.h" >&5
   if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 5494 "configure"
  +#line 5499 "configure"
   #include "confdefs.h"
   #include <alloca.h>
   int main() {
   char *p = alloca(2 * sizeof(int));
   ; return 0; }
   EOF
  -if { (eval echo configure:5501: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:5506: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     ac_cv_header_alloca_h=yes
   else
  @@ -5518,12 +5523,12 @@
   fi
   
   echo $ac_n "checking for alloca""... $ac_c" 1>&6
  -echo "configure:5522: checking for alloca" >&5
  +echo "configure:5527: checking for alloca" >&5
   if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 5527 "configure"
  +#line 5532 "configure"
   #include "confdefs.h"
   
   #ifdef __GNUC__
  @@ -5551,7 +5556,7 @@
   char *p = (char *) alloca(1);
   ; return 0; }
   EOF
  -if { (eval echo configure:5555: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:5560: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     ac_cv_func_alloca_works=yes
   else
  @@ -5583,12 +5588,12 @@
   
   
   echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
  -echo "configure:5587: checking whether alloca needs Cray hooks" >&5
  +echo "configure:5592: checking whether alloca needs Cray hooks" >&5
   if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 5592 "configure"
  +#line 5597 "configure"
   #include "confdefs.h"
   #if defined(CRAY) && ! defined(CRAY2)
   webecray
  @@ -5613,12 +5618,12 @@
   if test $ac_cv_os_cray = yes; then
   for ac_func in _getb67 GETB67 getb67; do
     echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
  -echo "configure:5617: checking for $ac_func" >&5
  +echo "configure:5622: checking for $ac_func" >&5
   if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 5622 "configure"
  +#line 5627 "configure"
   #include "confdefs.h"
   /* System header to define __stub macros and hopefully few prototypes,
       which can conflict with char $ac_func(); below.  */
  @@ -5641,7 +5646,7 @@
   
   ; return 0; }
   EOF
  -if { (eval echo configure:5645: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:5650: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     eval "ac_cv_func_$ac_func=yes"
   else
  @@ -5668,7 +5673,7 @@
   fi
   
   echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
  -echo "configure:5672: checking stack direction for C alloca" >&5
  +echo "configure:5677: checking stack direction for C alloca" >&5
   if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -5676,7 +5681,7 @@
     ac_cv_c_stack_direction=0
   else
     cat > conftest.$ac_ext <<EOF
  -#line 5680 "configure"
  +#line 5685 "configure"
   #include "confdefs.h"
   find_stack_direction ()
   {
  @@ -5695,7 +5700,7 @@
     exit (find_stack_direction() < 0);
   }
   EOF
  -if { (eval echo configure:5699: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  +if { (eval echo configure:5704: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
   then
     ac_cv_c_stack_direction=1
   else
  @@ -5718,12 +5723,12 @@
   
   
       echo $ac_n "checking whether we are using the GNU C Library 2.1 or newer""... 
$ac_c" 1>&6
  -echo "configure:5722: checking whether we are using the GNU C Library 2.1 or newer" 
>&5
  +echo "configure:5727: checking whether we are using the GNU C Library 2.1 or newer" 
>&5
   if eval "test \"`echo '$''{'ac_cv_gnu_library_2_1'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 5727 "configure"
  +#line 5732 "configure"
   #include "confdefs.h"
   
   #include <features.h>
  @@ -5759,17 +5764,17 @@
   do
   ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
   echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
  -echo "configure:5763: checking for $ac_hdr" >&5
  +echo "configure:5768: checking for $ac_hdr" >&5
   if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 5768 "configure"
  +#line 5773 "configure"
   #include "confdefs.h"
   #include <$ac_hdr>
   EOF
   ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  -{ (eval echo configure:5773: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  +{ (eval echo configure:5778: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
   ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
   if test -z "$ac_err"; then
     rm -rf conftest*
  @@ -5800,12 +5805,12 @@
   strdup strtoul tsearch __argz_count __argz_stringify __argz_next
   do
   echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
  -echo "configure:5804: checking for $ac_func" >&5
  +echo "configure:5809: checking for $ac_func" >&5
   if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 5809 "configure"
  +#line 5814 "configure"
   #include "confdefs.h"
   /* System header to define __stub macros and hopefully few prototypes,
       which can conflict with char $ac_func(); below.  */
  @@ -5828,7 +5833,7 @@
   
   ; return 0; }
   EOF
  -if { (eval echo configure:5832: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:5837: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     eval "ac_cv_func_$ac_func=yes"
   else
  @@ -5869,7 +5874,7 @@
   
   
     echo $ac_n "checking for iconv""... $ac_c" 1>&6
  -echo "configure:5873: checking for iconv" >&5
  +echo "configure:5878: checking for iconv" >&5
   if eval "test \"`echo '$''{'am_cv_func_iconv'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -5877,7 +5882,7 @@
       am_cv_func_iconv="no, consider installing GNU libiconv"
       am_cv_lib_iconv=no
       cat > conftest.$ac_ext <<EOF
  -#line 5881 "configure"
  +#line 5886 "configure"
   #include "confdefs.h"
   #include <stdlib.h>
   #include <iconv.h>
  @@ -5887,7 +5892,7 @@
          iconv_close(cd);
   ; return 0; }
   EOF
  -if { (eval echo configure:5891: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:5896: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     am_cv_func_iconv=yes
   else
  @@ -5899,7 +5904,7 @@
         am_save_LIBS="$LIBS"
         LIBS="$LIBS $am_cv_libiconv_ldpath -liconv"
         cat > conftest.$ac_ext <<EOF
  -#line 5903 "configure"
  +#line 5908 "configure"
   #include "confdefs.h"
   #include <stdlib.h>
   #include <iconv.h>
  @@ -5909,7 +5914,7 @@
            iconv_close(cd);
   ; return 0; }
   EOF
  -if { (eval echo configure:5913: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:5918: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     am_cv_lib_iconv=yes
           am_cv_func_iconv=yes
  @@ -5930,13 +5935,13 @@
   EOF
   
       echo $ac_n "checking for iconv declaration""... $ac_c" 1>&6
  -echo "configure:5934: checking for iconv declaration" >&5
  +echo "configure:5939: checking for iconv declaration" >&5
       if eval "test \"`echo '$''{'am_cv_proto_iconv'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     
         cat > conftest.$ac_ext <<EOF
  -#line 5940 "configure"
  +#line 5945 "configure"
   #include "confdefs.h"
   
   #include <stdlib.h>
  @@ -5955,7 +5960,7 @@
   
   ; return 0; }
   EOF
  -if { (eval echo configure:5959: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
  +if { (eval echo configure:5964: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; 
then
     rm -rf conftest*
     am_cv_proto_iconv_arg1=""
   else
  @@ -5984,19 +5989,19 @@
   
      
     echo $ac_n "checking for nl_langinfo and CODESET""... $ac_c" 1>&6
  -echo "configure:5988: checking for nl_langinfo and CODESET" >&5
  +echo "configure:5993: checking for nl_langinfo and CODESET" >&5
   if eval "test \"`echo '$''{'am_cv_langinfo_codeset'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 5993 "configure"
  +#line 5998 "configure"
   #include "confdefs.h"
   #include <langinfo.h>
   int main() {
   char* cs = nl_langinfo(CODESET);
   ; return 0; }
   EOF
  -if { (eval echo configure:6000: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:6005: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     am_cv_langinfo_codeset=yes
   else
  @@ -6019,19 +6024,19 @@
   
      if test $ac_cv_header_locale_h = yes; then
       echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6
  -echo "configure:6023: checking for LC_MESSAGES" >&5
  +echo "configure:6028: checking for LC_MESSAGES" >&5
   if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 6028 "configure"
  +#line 6033 "configure"
   #include "confdefs.h"
   #include <locale.h>
   int main() {
   return LC_MESSAGES
   ; return 0; }
   EOF
  -if { (eval echo configure:6035: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:6040: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     am_cv_val_LC_MESSAGES=yes
   else
  @@ -6052,7 +6057,7 @@
       fi
     fi
      echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6
  -echo "configure:6056: checking whether NLS is requested" >&5
  +echo "configure:6061: checking whether NLS is requested" >&5
           # Check whether --enable-nls or --disable-nls was given.
   if test "${enable_nls+set}" = set; then
     enableval="$enable_nls"
  @@ -6075,7 +6080,7 @@
   EOF
   
         echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6
  -echo "configure:6079: checking whether included gettext is requested" >&5
  +echo "configure:6084: checking whether included gettext is requested" >&5
         # Check whether --with-included-gettext or --without-included-gettext was 
given.
   if test "${with_included_gettext+set}" = set; then
     withval="$with_included_gettext"
  @@ -6095,17 +6100,17 @@
   
        ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'`
   echo $ac_n "checking for libintl.h""... $ac_c" 1>&6
  -echo "configure:6099: checking for libintl.h" >&5
  +echo "configure:6104: checking for libintl.h" >&5
   if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 6104 "configure"
  +#line 6109 "configure"
   #include "confdefs.h"
   #include <libintl.h>
   EOF
   ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  -{ (eval echo configure:6109: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  +{ (eval echo configure:6114: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
   ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
   if test -z "$ac_err"; then
     rm -rf conftest*
  @@ -6126,12 +6131,12 @@
   EOF
   
              echo $ac_n "checking for GNU gettext in libc""... $ac_c" 1>&6
  -echo "configure:6130: checking for GNU gettext in libc" >&5
  +echo "configure:6135: checking for GNU gettext in libc" >&5
   if eval "test \"`echo '$''{'gt_cv_func_gnugettext1_libc'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 6135 "configure"
  +#line 6140 "configure"
   #include "confdefs.h"
   #include <libintl.h>
   extern int _nl_msg_cat_cntr;
  @@ -6140,7 +6145,7 @@
   return (int) gettext ("") + _nl_msg_cat_cntr
   ; return 0; }
   EOF
  -if { (eval echo configure:6144: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:6149: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     gt_cv_func_gnugettext1_libc=yes
   else
  @@ -6156,14 +6161,14 @@
   
           if test "$gt_cv_func_gnugettext1_libc" != "yes"; then
             echo $ac_n "checking for GNU gettext in libintl""... $ac_c" 1>&6
  -echo "configure:6160: checking for GNU gettext in libintl" >&5
  +echo "configure:6165: checking for GNU gettext in libintl" >&5
   if eval "test \"`echo '$''{'gt_cv_func_gnugettext1_libintl'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     gt_save_LIBS="$LIBS"
                LIBS="$LIBS -lintl $LIBICONV"
                cat > conftest.$ac_ext <<EOF
  -#line 6167 "configure"
  +#line 6172 "configure"
   #include "confdefs.h"
   #include <libintl.h>
   extern int _nl_msg_cat_cntr;
  @@ -6172,7 +6177,7 @@
   return (int) gettext ("") + _nl_msg_cat_cntr
   ; return 0; }
   EOF
  -if { (eval echo configure:6176: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:6181: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     gt_cv_func_gnugettext1_libintl=yes
   else
  @@ -6205,12 +6210,12 @@
             for ac_func in dcgettext
   do
   echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
  -echo "configure:6209: checking for $ac_func" >&5
  +echo "configure:6214: checking for $ac_func" >&5
   if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     cat > conftest.$ac_ext <<EOF
  -#line 6214 "configure"
  +#line 6219 "configure"
   #include "confdefs.h"
   /* System header to define __stub macros and hopefully few prototypes,
       which can conflict with char $ac_func(); below.  */
  @@ -6233,7 +6238,7 @@
   
   ; return 0; }
   EOF
  -if { (eval echo configure:6237: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:6242: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     eval "ac_cv_func_$ac_func=yes"
   else
  @@ -6262,7 +6267,7 @@
                     # Extract the first word of "msgfmt", so it can be a program name 
with args.
   set dummy msgfmt; ac_word=$2
   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  -echo "configure:6266: checking for $ac_word" >&5
  +echo "configure:6271: checking for $ac_word" >&5
   if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -6296,7 +6301,7 @@
             # Extract the first word of "gmsgfmt", so it can be a program name with 
args.
   set dummy gmsgfmt; ac_word=$2
   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  -echo "configure:6300: checking for $ac_word" >&5
  +echo "configure:6305: checking for $ac_word" >&5
   if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -6333,7 +6338,7 @@
                     # Extract the first word of "xgettext", so it can be a program 
name with args.
   set dummy xgettext; ac_word=$2
   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  -echo "configure:6337: checking for $ac_word" >&5
  +echo "configure:6342: checking for $ac_word" >&5
   if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -6383,7 +6388,7 @@
           # Extract the first word of "msgfmt", so it can be a program name with args.
   set dummy msgfmt; ac_word=$2
   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  -echo "configure:6387: checking for $ac_word" >&5
  +echo "configure:6392: checking for $ac_word" >&5
   if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -6417,7 +6422,7 @@
           # Extract the first word of "gmsgfmt", so it can be a program name with 
args.
   set dummy gmsgfmt; ac_word=$2
   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  -echo "configure:6421: checking for $ac_word" >&5
  +echo "configure:6426: checking for $ac_word" >&5
   if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -6453,7 +6458,7 @@
           # Extract the first word of "xgettext", so it can be a program name with 
args.
   set dummy xgettext; ac_word=$2
   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  -echo "configure:6457: checking for $ac_word" >&5
  +echo "configure:6462: checking for $ac_word" >&5
   if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -6525,7 +6530,7 @@
   # Extract the first word of "$ac_prog", so it can be a program name with args.
   set dummy $ac_prog; ac_word=$2
   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  -echo "configure:6529: checking for $ac_word" >&5
  +echo "configure:6534: checking for $ac_word" >&5
   if eval "test \"`echo '$''{'ac_cv_prog_INTLBISON'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -6558,7 +6563,7 @@
         ac_verc_fail=yes
       else
               echo $ac_n "checking version of bison""... $ac_c" 1>&6
  -echo "configure:6562: checking version of bison" >&5
  +echo "configure:6567: checking version of bison" >&5
         ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* 
\([0-9]*\.[0-9.]*\).*$/\1/p'`
         case $ac_prog_version in
           '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
  @@ -6603,7 +6608,7 @@
   
            if test "x$CATOBJEXT" != x; then
        echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6
  -echo "configure:6607: checking for catalogs to be installed" >&5
  +echo "configure:6612: checking for catalogs to be installed" >&5
        # Look for .po and .gmo files in the source directory.
        CATALOGS=
        XLINGUAS=
  @@ -6661,7 +6666,7 @@
   case $host_os in
        win32 | pe | cygwin* | mingw32* | uwin*)
   echo $ac_n "checking whether windows registry support is requested""... $ac_c" 1>&6
  -echo "configure:6665: checking whether windows registry support is requested" >&5
  +echo "configure:6670: checking whether windows registry support is requested" >&5
   if test "x$enable_win32_registry" != xno; then
     cat >> confdefs.h <<\EOF
   #define ENABLE_WIN32_REGISTRY 1
  @@ -6670,14 +6675,14 @@
     echo "$ac_t""yes" 1>&6
     
   echo $ac_n "checking for library containing RegOpenKeyExA""... $ac_c" 1>&6
  -echo "configure:6674: checking for library containing RegOpenKeyExA" >&5
  +echo "configure:6679: checking for library containing RegOpenKeyExA" >&5
   if eval "test \"`echo '$''{'ac_cv_search_RegOpenKeyExA'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
     ac_func_search_save_LIBS="$LIBS"
   ac_cv_search_RegOpenKeyExA="no"
   cat > conftest.$ac_ext <<EOF
  -#line 6681 "configure"
  +#line 6686 "configure"
   #include "confdefs.h"
   /* Override any gcc2 internal prototype to avoid an error.  */
   /* We use char because int might match the return type of a gcc2
  @@ -6688,7 +6693,7 @@
   RegOpenKeyExA()
   ; return 0; }
   EOF
  -if { (eval echo configure:6692: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:6697: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     ac_cv_search_RegOpenKeyExA="none required"
   else
  @@ -6699,7 +6704,7 @@
   test "$ac_cv_search_RegOpenKeyExA" = "no" && for i in advapi32; do
   LIBS="-l$i  $ac_func_search_save_LIBS"
   cat > conftest.$ac_ext <<EOF
  -#line 6703 "configure"
  +#line 6708 "configure"
   #include "confdefs.h"
   /* Override any gcc2 internal prototype to avoid an error.  */
   /* We use char because int might match the return type of a gcc2
  @@ -6710,7 +6715,7 @@
   RegOpenKeyExA()
   ; return 0; }
   EOF
  -if { (eval echo configure:6714: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
  +if { (eval echo configure:6719: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
     rm -rf conftest*
     ac_cv_search_RegOpenKeyExA="-l$i"
   break
  @@ -6752,7 +6757,7 @@
   
   if test "x$enable_win32_registry" != xno; then
     echo $ac_n "checking registry key on windows hosts""... $ac_c" 1>&6
  -echo "configure:6756: checking registry key on windows hosts" >&5
  +echo "configure:6761: checking registry key on windows hosts" >&5
     cat >> confdefs.h <<EOF
   #define WIN32_REGISTRY_KEY "$gcc_cv_win32_registry_key"
   EOF
  @@ -6974,7 +6979,7 @@
   
   # Figure out what assembler we will be using.
   echo $ac_n "checking what assembler to use""... $ac_c" 1>&6
  -echo "configure:6978: checking what assembler to use" >&5
  +echo "configure:6983: checking what assembler to use" >&5
   gcc_cv_as=
   gcc_cv_gas_major_version=
   gcc_cv_gas_minor_version=
  @@ -7068,7 +7073,7 @@
   
   # Figure out what linker we will be using.
   echo $ac_n "checking what linker to use""... $ac_c" 1>&6
  -echo "configure:7072: checking what linker to use" >&5
  +echo "configure:7077: checking what linker to use" >&5
   gcc_cv_ld=
   gcc_cv_gld_major_version=
   gcc_cv_gld_minor_version=
  @@ -7161,7 +7166,7 @@
   
   # Figure out what nm we will be using.
   echo $ac_n "checking what nm to use""... $ac_c" 1>&6
  -echo "configure:7165: checking what nm to use" >&5
  +echo "configure:7170: checking what nm to use" >&5
   if test -x nm$host_exeext; then
        gcc_cv_nm=./nm$host_exeext
   elif test "x$program_prefix" != xNONE; then
  @@ -7173,7 +7178,7 @@
   
   # Figure out what objdump we will be using.
   echo $ac_n "checking what objdump to use""... $ac_c" 1>&6
  -echo "configure:7177: checking what objdump to use" >&5
  +echo "configure:7182: checking what objdump to use" >&5
   if test -x objdump$host_exeext; then
        gcc_cv_objdump=./objdump$host_exeext
   elif test "x$program_prefix" != xNONE; then
  @@ -7185,7 +7190,7 @@
   
   # Figure out what assembler alignment features are present.
   echo $ac_n "checking assembler alignment features""... $ac_c" 1>&6
  -echo "configure:7189: checking assembler alignment features" >&5
  +echo "configure:7194: checking assembler alignment features" >&5
   gcc_cv_as_alignment_features=none
   if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
        # Gas version 2.6 and later support for .balign and .p2align.
  @@ -7233,7 +7238,7 @@
   echo "$ac_t""$gcc_cv_as_alignment_features" 1>&6
   
   echo $ac_n "checking assembler subsection support""... $ac_c" 1>&6
  -echo "configure:7237: checking assembler subsection support" >&5
  +echo "configure:7242: checking assembler subsection support" >&5
   gcc_cv_as_subsections=no
   if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
     if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 9 -o 
"$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > 
/dev/null; then
  @@ -7273,7 +7278,7 @@
   echo "$ac_t""$gcc_cv_as_subsections" 1>&6
   
   echo $ac_n "checking assembler weak support""... $ac_c" 1>&6
  -echo "configure:7277: checking assembler weak support" >&5
  +echo "configure:7282: checking assembler weak support" >&5
   gcc_cv_as_weak=no
   if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
     if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 2 -o 
"$gcc_cv_gas_major_version" -gt 2; then
  @@ -7296,7 +7301,7 @@
   echo "$ac_t""$gcc_cv_as_weak" 1>&6
   
   echo $ac_n "checking assembler hidden support""... $ac_c" 1>&6
  -echo "configure:7300: checking assembler hidden support" >&5
  +echo "configure:7305: checking assembler hidden support" >&5
   gcc_cv_as_hidden=no
   if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
     if test "$gcc_cv_gas_major_version" -eq 2  \
  @@ -7368,7 +7373,7 @@
   
   
   echo $ac_n "checking assembler leb128 support""... $ac_c" 1>&6
  -echo "configure:7372: checking assembler leb128 support" >&5
  +echo "configure:7377: checking assembler leb128 support" >&5
   gcc_cv_as_leb128=no
   if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
     if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 11 
-o "$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > 
/dev/null; then
  @@ -7413,7 +7418,7 @@
   echo "$ac_t""$gcc_cv_as_leb128" 1>&6
   
   echo $ac_n "checking assembler eh_frame optimization""... $ac_c" 1>&6
  -echo "configure:7417: checking assembler eh_frame optimization" >&5
  +echo "configure:7422: checking assembler eh_frame optimization" >&5
   gcc_cv_as_eh_frame=no
   if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
     if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 12 
-o "$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > 
/dev/null; then
  @@ -7494,7 +7499,7 @@
   echo "$ac_t""$gcc_cv_as_eh_frame" 1>&6
   
   echo $ac_n "checking assembler section merging support""... $ac_c" 1>&6
  -echo "configure:7498: checking assembler section merging support" >&5
  +echo "configure:7503: checking assembler section merging support" >&5
   gcc_cv_as_shf_merge=no
   if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
     if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 12 
-o "$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > 
/dev/null; then
  @@ -7517,7 +7522,7 @@
   echo "$ac_t""$gcc_cv_as_shf_merge" 1>&6
   
   echo $ac_n "checking assembler thread-local storage support""... $ac_c" 1>&6
  -echo "configure:7521: checking assembler thread-local storage support" >&5
  +echo "configure:7526: checking assembler thread-local storage support" >&5
   gcc_cv_as_tls=no
   conftest_s=
   tls_first_major=
  @@ -7609,7 +7614,7 @@
     # All TARGET_ABI_OSF targets.
     alpha*-*-osf* | alpha*-*-linux* | alpha*-*-*bsd*)
       echo $ac_n "checking assembler supports explicit relocations""... $ac_c" 1>&6
  -echo "configure:7613: checking assembler supports explicit relocations" >&5
  +echo "configure:7618: checking assembler supports explicit relocations" >&5
   if eval "test \"`echo '$''{'gcc_cv_as_explicit_relocs'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -7659,7 +7664,7 @@
       ;;
     sparc*-*-*)
       echo $ac_n "checking assembler .register pseudo-op support""... $ac_c" 1>&6
  -echo "configure:7663: checking assembler .register pseudo-op support" >&5
  +echo "configure:7668: checking assembler .register pseudo-op support" >&5
   if eval "test \"`echo '$''{'gcc_cv_as_register_pseudo_op'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -7687,7 +7692,7 @@
       fi
   
       echo $ac_n "checking assembler supports -relax""... $ac_c" 1>&6
  -echo "configure:7691: checking assembler supports -relax" >&5
  +echo "configure:7696: checking assembler supports -relax" >&5
   if eval "test \"`echo '$''{'gcc_cv_as_relax_opt'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -7715,7 +7720,7 @@
       fi
   
       echo $ac_n "checking assembler and linker support unaligned pc related 
relocs""... $ac_c" 1>&6
  -echo "configure:7719: checking assembler and linker support unaligned pc related 
relocs" >&5
  +echo "configure:7724: checking assembler and linker support unaligned pc related 
relocs" >&5
   if eval "test \"`echo '$''{'gcc_cv_as_sparc_ua_pcrel'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -7742,7 +7747,7 @@
       fi
   
       echo $ac_n "checking assembler and linker support unaligned pc related relocs 
against hidden symbols""... $ac_c" 1>&6
  -echo "configure:7746: checking assembler and linker support unaligned pc related 
relocs against hidden symbols" >&5
  +echo "configure:7751: checking assembler and linker support unaligned pc related 
relocs against hidden symbols" >&5
   if eval "test \"`echo '$''{'gcc_cv_as_sparc_ua_pcrel_hidden'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -7782,7 +7787,7 @@
       fi
   
       echo $ac_n "checking for assembler offsetable %lo() support""... $ac_c" 1>&6
  -echo "configure:7786: checking for assembler offsetable %lo() support" >&5
  +echo "configure:7791: checking for assembler offsetable %lo() support" >&5
   if eval "test \"`echo '$''{'gcc_cv_as_offsetable_lo10'+set}'`\" = set"; then
     echo $ac_n "(cached) $ac_c" 1>&6
   else
  @@ -7821,7 +7826,7 @@
   
     i[34567]86-*-* | x86_64-*-*)
       echo $ac_n "checking assembler instructions""... $ac_c" 1>&6
  -echo "configure:7825: checking assembler instructions" >&5
  +echo "configure:7830: checking assembler instructions" >&5
       gcc_cv_as_instructions=
       if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
         if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 
9 -o "$gcc_cv_gas_major_version" -gt 2; then
  @@ -7848,7 +7853,7 @@
       echo "$ac_t""$gcc_cv_as_instructions" 1>&6
   
       echo $ac_n "checking assembler GOTOFF in data directives""... $ac_c" 1>&6
  -echo "configure:7852: checking assembler GOTOFF in data directives" >&5
  +echo "configure:7857: checking assembler GOTOFF in data directives" >&5
       gcc_cv_as_gotoff_in_data=no
       if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x
       then
  @@ -7878,7 +7883,7 @@
   esac
   
   echo $ac_n "checking assembler dwarf2 debug_line support""... $ac_c" 1>&6
  -echo "configure:7882: checking assembler dwarf2 debug_line support" >&5
  +echo "configure:7887: checking assembler dwarf2 debug_line support" >&5
   gcc_cv_as_dwarf2_debug_line=no
   # ??? Not all targets support dwarf2 debug_line, even within a version
   # of gas.  Moreover, we need to emit a valid instruction to trigger any
  @@ -7934,7 +7939,7 @@
   echo "$ac_t""$gcc_cv_as_dwarf2_debug_line" 1>&6
   
   echo $ac_n "checking assembler --gdwarf2 support""... $ac_c" 1>&6
  -echo "configure:7938: checking assembler --gdwarf2 support" >&5
  +echo "configure:7943: checking assembler --gdwarf2 support" >&5
   gcc_cv_as_gdwarf2_flag=no
   if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x;
   then
  @@ -7964,7 +7969,7 @@
   
   # APPLE LOCAL coalescing --matt
   echo $ac_n "checking whether assembler supports weak section attribute.""... $ac_c" 
1>&6
  -echo "configure:7968: checking whether assembler supports weak section attribute." 
>&5
  +echo "configure:7973: checking whether assembler supports weak section attribute." 
>&5
   cat > conftest.s  <<EOF
   .section __TEXT,text,coalesced,weak_definitions
        .align 2
  @@ -7987,7 +7992,7 @@
   fi
   
   echo $ac_n "checking whether assembler supports weak assembler directive.""... 
$ac_c" 1>&6
  -echo "configure:7991: checking whether assembler supports weak assembler 
directive." >&5
  +echo "configure:7996: checking whether assembler supports weak assembler 
directive." >&5
   apple_gcc_as_weak_assembler_directive=no
   cat > conftest.s <<EOF
   .section __TEXT,text,coalesced
  @@ -8011,7 +8016,7 @@
   fi
   
   echo $ac_n "checking whether assembler supports strip static syms assembler 
directive.""... $ac_c" 1>&6
  -echo "configure:8015: checking whether assembler supports strip static syms 
assembler directive." >&5
  +echo "configure:8020: checking whether assembler supports strip static syms 
assembler directive." >&5
   apple_gcc_as_strip_static_syms_assembler_directive=no
   cat > conftest.s <<EOF
   .section __TEXT,text,coalesced,no_toc+strip_static_syms
  @@ -8036,7 +8041,7 @@
   # APPLE LOCAL end coalescing --matt
   
   echo $ac_n "checking assembler --gstabs support""... $ac_c" 1>&6
  -echo "configure:8040: checking assembler --gstabs support" >&5
  +echo "configure:8045: checking assembler --gstabs support" >&5
   gcc_cv_as_gstabs_flag=no
   if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x;
   then
  @@ -8064,7 +8069,7 @@
   echo "$ac_t""$gcc_cv_as_gstabs_flag" 1>&6
   
   echo $ac_n "checking linker PT_GNU_EH_FRAME support""... $ac_c" 1>&6
  -echo "configure:8068: checking linker PT_GNU_EH_FRAME support" >&5
  +echo "configure:8073: checking linker PT_GNU_EH_FRAME support" >&5
   gcc_cv_ld_eh_frame_hdr=no
   if test x$gcc_cv_gld_major_version != x -a x$gcc_cv_gld_minor_version != x; then
     if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 12 
-o "$gcc_cv_gld_major_version" -gt 2 && grep 'EMUL = elf' ../ld/Makefile > /dev/null; 
then
  @@ -8088,7 +8093,7 @@
   case "$target" in
     mips*-*-*)
       echo $ac_n "checking whether libgloss uses STARTUP directives consistently""... 
$ac_c" 1>&6
  -echo "configure:8092: checking whether libgloss uses STARTUP directives 
consistently" >&5
  +echo "configure:8097: checking whether libgloss uses STARTUP directives 
consistently" >&5
       gcc_cv_mips_libgloss_startup=no
       gcc_cv_libgloss_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/libgloss
       if test "x$exec_prefix" = xNONE; then
  @@ -8292,7 +8297,7 @@
   
   
   echo $ac_n "checking whether to enable maintainer-specific portions of 
Makefiles""... $ac_c" 1>&6
  -echo "configure:8296: checking whether to enable maintainer-specific portions of 
Makefiles" >&5
  +echo "configure:8301: checking whether to enable maintainer-specific portions of 
Makefiles" >&5
       # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
   if test "${enable_maintainer_mode+set}" = set; then
     enableval="$enable_maintainer_mode"
  @@ -8349,7 +8354,7 @@
   fi
   
   echo $ac_n "checking whether debugging functions for tree and rtl nodes 
requested""... $ac_c" 1>&6
  -echo "configure:8353: checking whether debugging functions for tree and rtl nodes 
requested" >&5
  +echo "configure:8358: checking whether debugging functions for tree and rtl nodes 
requested" >&5
   if test x${enable_idebug} = xyes; then
     echo "$ac_t""yes" 1>&6
     cat >> confdefs.h <<\EOF
  @@ -8370,7 +8375,7 @@
   fi
   
   echo $ac_n "checking whether dmp_tree() support for debugger was requested""... 
$ac_c" 1>&6
  -echo "configure:8374: checking whether dmp_tree() support for debugger was 
requested" >&5
  +echo "configure:8379: checking whether dmp_tree() support for debugger was 
requested" >&5
   if test x${enable_dmp_tree} = xyes; then
     echo "$ac_t""yes" 1>&6
     cat >> confdefs.h <<\EOF
  @@ -8392,7 +8397,7 @@
   fi
   
   echo $ac_n "checking whether configuring from build_gcc""... $ac_c" 1>&6
  -echo "configure:8396: checking whether configuring from build_gcc" >&5
  +echo "configure:8401: checking whether configuring from build_gcc" >&5
   if test x${enable_build_gcc} = xyes; then
     echo "$ac_t""yes" 1>&6
     cat >> confdefs.h <<\EOF
  
  
  


Reply via email to