home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.4 / 7.4.223 < prev    next >
Encoding:
Internet Message Format  |  2014-03-26  |  214.8 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.223
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.4.223
  11. Problem:    Still using an older autoconf version.
  12. Solution:   Switch to autoconf 2.69.
  13. Files:        src/Makefile, src/configure.in, src/auto/configure
  14.  
  15.  
  16. *** ../vim-7.4.222/src/Makefile    2014-03-25 15:34:44.993932592 +0100
  17. --- src/Makefile    2014-03-27 17:37:32.864693288 +0100
  18. ***************
  19. *** 586,591 ****
  20. --- 586,594 ----
  21.   # as root: sysctl -w vm.max_proc_mmap=30000
  22.   #EXTRA_LIBS = /usr/local/lib/libefence.a
  23.   
  24. + # Autoconf binary.
  25. + AUTOCONF = autoconf
  26.   # PURIFY - remove the # to use the "purify" program (hoi Nia++!)
  27.   #PURIFY = purify
  28.   
  29. ***************
  30. *** 1713,1719 ****
  31.   # - Uses ">config.log" instead of "./config.log".
  32.   autoconf:
  33.       if test ! -f configure.save; then mv configure configure.save; fi
  34. !     autoconf
  35.       sed -e 's+>config.log+>auto/config.log+' -e 's+\./config.log+auto/config.log+' configure > auto/configure
  36.       chmod 755 auto/configure
  37.       mv -f configure.save configure
  38. --- 1716,1722 ----
  39.   # - Uses ">config.log" instead of "./config.log".
  40.   autoconf:
  41.       if test ! -f configure.save; then mv configure configure.save; fi
  42. !     $(AUTOCONF)
  43.       sed -e 's+>config.log+>auto/config.log+' -e 's+\./config.log+auto/config.log+' configure > auto/configure
  44.       chmod 755 auto/configure
  45.       mv -f configure.save configure
  46. *** ../vim-7.4.222/src/configure.in    2014-03-27 17:19:05.860676325 +0100
  47. --- src/configure.in    2014-03-27 17:31:39.412687872 +0100
  48. ***************
  49. *** 1397,1403 ****
  50.     ldflags_save=$LDFLAGS
  51.     dnl -ldl must go first to make this work on Archlinux (Roland Puntaier)
  52.     LDFLAGS="-ldl $LDFLAGS"
  53. !   AC_RUN_IFELSE([
  54.       #include <dlfcn.h>
  55.       /* If this program fails, then RTLD_GLOBAL is needed.
  56.        * RTLD_GLOBAL will be used and then it is not possible to
  57. --- 1397,1403 ----
  58.     ldflags_save=$LDFLAGS
  59.     dnl -ldl must go first to make this work on Archlinux (Roland Puntaier)
  60.     LDFLAGS="-ldl $LDFLAGS"
  61. !   AC_RUN_IFELSE([AC_LANG_SOURCE([
  62.       #include <dlfcn.h>
  63.       /* If this program fails, then RTLD_GLOBAL is needed.
  64.        * RTLD_GLOBAL will be used and then it is not possible to
  65. ***************
  66. *** 1430,1436 ****
  67.         if (no_rtl_global_needed_for("${python_INSTSONAME}", "${vi_cv_path_python_pfx}"))
  68.               not_needed = 1;
  69.         return !not_needed;
  70. !     }],
  71.       [AC_MSG_RESULT(yes);AC_DEFINE(PY_NO_RTLD_GLOBAL)], [AC_MSG_RESULT(no)])
  72.   
  73.     CFLAGS=$cflags_save
  74. --- 1430,1436 ----
  75.         if (no_rtl_global_needed_for("${python_INSTSONAME}", "${vi_cv_path_python_pfx}"))
  76.               not_needed = 1;
  77.         return !not_needed;
  78. !     }])],
  79.       [AC_MSG_RESULT(yes);AC_DEFINE(PY_NO_RTLD_GLOBAL)], [AC_MSG_RESULT(no)])
  80.   
  81.     CFLAGS=$cflags_save
  82. ***************
  83. *** 1442,1448 ****
  84.     ldflags_save=$LDFLAGS
  85.     dnl -ldl must go first to make this work on Archlinux (Roland Puntaier)
  86.     LDFLAGS="-ldl $LDFLAGS"
  87. !   AC_RUN_IFELSE([
  88.       #include <dlfcn.h>
  89.       #include <wchar.h>
  90.       /* If this program fails, then RTLD_GLOBAL is needed.
  91. --- 1442,1448 ----
  92.     ldflags_save=$LDFLAGS
  93.     dnl -ldl must go first to make this work on Archlinux (Roland Puntaier)
  94.     LDFLAGS="-ldl $LDFLAGS"
  95. !   AC_RUN_IFELSE([AC_LANG_SOURCE([
  96.       #include <dlfcn.h>
  97.       #include <wchar.h>
  98.       /* If this program fails, then RTLD_GLOBAL is needed.
  99. ***************
  100. *** 1476,1482 ****
  101.         if (no_rtl_global_needed_for("${python3_INSTSONAME}", L"${vi_cv_path_python3_pfx}"))
  102.               not_needed = 1;
  103.         return !not_needed;
  104. !     }],
  105.       [AC_MSG_RESULT(yes);AC_DEFINE(PY3_NO_RTLD_GLOBAL)], [AC_MSG_RESULT(no)])
  106.   
  107.     CFLAGS=$cflags_save
  108. --- 1476,1482 ----
  109.         if (no_rtl_global_needed_for("${python3_INSTSONAME}", L"${vi_cv_path_python3_pfx}"))
  110.               not_needed = 1;
  111.         return !not_needed;
  112. !     }])],
  113.       [AC_MSG_RESULT(yes);AC_DEFINE(PY3_NO_RTLD_GLOBAL)], [AC_MSG_RESULT(no)])
  114.   
  115.     CFLAGS=$cflags_save
  116. ***************
  117. *** 2737,2743 ****
  118.   
  119.   AC_CACHE_CHECK([whether toupper is broken], [vim_cv_toupper_broken],
  120.     [
  121. !     AC_RUN_IFELSE([[
  122.   #include "confdefs.h"
  123.   #include <ctype.h>
  124.   #if STDC_HEADERS
  125. --- 2737,2743 ----
  126.   
  127.   AC_CACHE_CHECK([whether toupper is broken], [vim_cv_toupper_broken],
  128.     [
  129. !     AC_RUN_IFELSE([AC_LANG_SOURCE([[
  130.   #include "confdefs.h"
  131.   #include <ctype.h>
  132.   #if STDC_HEADERS
  133. ***************
  134. *** 2745,2751 ****
  135.   # include <stddef.h>
  136.   #endif
  137.   main() { exit(toupper('A') == 'A' && tolower('z') == 'z'); }
  138. !   ]],[
  139.       vim_cv_toupper_broken=yes
  140.     ],[
  141.       vim_cv_toupper_broken=no
  142. --- 2745,2751 ----
  143.   # include <stddef.h>
  144.   #endif
  145.   main() { exit(toupper('A') == 'A' && tolower('z') == 'z'); }
  146. !   ]])],[
  147.       vim_cv_toupper_broken=yes
  148.     ],[
  149.       vim_cv_toupper_broken=no
  150. ***************
  151. *** 2993,2999 ****
  152.   
  153.   AC_CACHE_CHECK([whether we talk terminfo], [vim_cv_terminfo],
  154.     [
  155. !     AC_RUN_IFELSE([[
  156.   #include "confdefs.h"
  157.   #ifdef HAVE_TERMCAP_H
  158.   # include <termcap.h>
  159. --- 2993,2999 ----
  160.   
  161.   AC_CACHE_CHECK([whether we talk terminfo], [vim_cv_terminfo],
  162.     [
  163. !     AC_RUN_IFELSE([AC_LANG_SOURCE([[
  164.   #include "confdefs.h"
  165.   #ifdef HAVE_TERMCAP_H
  166.   # include <termcap.h>
  167. ***************
  168. *** 3007,3013 ****
  169.   #endif
  170.   main()
  171.   {char *s; s=(char *)tgoto("%p1%d", 0, 1); exit(!strcmp(s==0 ? "" : s, "1")); }
  172. !     ]],[
  173.         vim_cv_terminfo=no
  174.       ],[
  175.         vim_cv_terminfo=yes
  176. --- 3007,3013 ----
  177.   #endif
  178.   main()
  179.   {char *s; s=(char *)tgoto("%p1%d", 0, 1); exit(!strcmp(s==0 ? "" : s, "1")); }
  180. !     ]])],[
  181.         vim_cv_terminfo=no
  182.       ],[
  183.         vim_cv_terminfo=yes
  184. ***************
  185. *** 3023,3029 ****
  186.   if test "x$olibs" != "x$LIBS"; then
  187.     AC_CACHE_CHECK([what tgetent() returns for an unknown terminal], [vim_cv_tgent],
  188.       [
  189. !       AC_RUN_IFELSE([[
  190.   #include "confdefs.h"
  191.   #ifdef HAVE_TERMCAP_H
  192.   # include <termcap.h>
  193. --- 3023,3029 ----
  194.   if test "x$olibs" != "x$LIBS"; then
  195.     AC_CACHE_CHECK([what tgetent() returns for an unknown terminal], [vim_cv_tgent],
  196.       [
  197. !       AC_RUN_IFELSE([AC_LANG_SOURCE([[
  198.   #include "confdefs.h"
  199.   #ifdef HAVE_TERMCAP_H
  200.   # include <termcap.h>
  201. ***************
  202. *** 3034,3040 ****
  203.   #endif
  204.   main()
  205.   {char s[10000]; int res = tgetent(s, "thisterminaldoesnotexist"); exit(res != 0); }
  206. !       ]],[
  207.       vim_cv_tgent=zero
  208.         ],[
  209.       vim_cv_tgent=non-zero
  210. --- 3034,3040 ----
  211.   #endif
  212.   main()
  213.   {char s[10000]; int res = tgetent(s, "thisterminaldoesnotexist"); exit(res != 0); }
  214. !       ]])],[
  215.       vim_cv_tgent=zero
  216.         ],[
  217.       vim_cv_tgent=non-zero
  218. ***************
  219. *** 3158,3164 ****
  220.   rm -f conftest_grp
  221.   AC_CACHE_CHECK([default tty permissions/group], [vim_cv_tty_group],
  222.     [
  223. !     AC_RUN_IFELSE([[
  224.   #include "confdefs.h"
  225.   #include <sys/types.h>
  226.   #if STDC_HEADERS
  227. --- 3158,3164 ----
  228.   rm -f conftest_grp
  229.   AC_CACHE_CHECK([default tty permissions/group], [vim_cv_tty_group],
  230.     [
  231. !     AC_RUN_IFELSE([AC_LANG_SOURCE([[
  232.   #include "confdefs.h"
  233.   #include <sys/types.h>
  234.   #if STDC_HEADERS
  235. ***************
  236. *** 3194,3200 ****
  237.     fclose(fp);
  238.     exit(0);
  239.   }
  240. !     ]],[
  241.         if test -f conftest_grp; then
  242.       vim_cv_tty_group=`cat conftest_grp`
  243.       if test "x$vim_cv_tty_mode" = "x" ; then
  244. --- 3194,3200 ----
  245.     fclose(fp);
  246.     exit(0);
  247.   }
  248. !     ]])],[
  249.         if test -f conftest_grp; then
  250.       vim_cv_tty_group=`cat conftest_grp`
  251.       if test "x$vim_cv_tty_mode" = "x" ; then
  252. ***************
  253. *** 3252,3258 ****
  254.   dnl system("sh -c pwd")
  255.   AC_CACHE_CHECK([getcwd implementation is broken], [vim_cv_getcwd_broken],
  256.     [
  257. !     AC_RUN_IFELSE([[
  258.   #include "confdefs.h"
  259.   #ifdef HAVE_UNISTD_H
  260.   #include <unistd.h>
  261. --- 3252,3258 ----
  262.   dnl system("sh -c pwd")
  263.   AC_CACHE_CHECK([getcwd implementation is broken], [vim_cv_getcwd_broken],
  264.     [
  265. !     AC_RUN_IFELSE([AC_LANG_SOURCE([[
  266.   #include "confdefs.h"
  267.   #ifdef HAVE_UNISTD_H
  268.   #include <unistd.h>
  269. ***************
  270. *** 3265,3271 ****
  271.     environ = dagger;
  272.     return getcwd(buffer, 500) ? 0 : 1;
  273.   }
  274. !     ]],[
  275.         vim_cv_getcwd_broken=no
  276.       ],[
  277.         vim_cv_getcwd_broken=yes
  278. --- 3265,3271 ----
  279.     environ = dagger;
  280.     return getcwd(buffer, 500) ? 0 : 1;
  281.   }
  282. !     ]])],[
  283.         vim_cv_getcwd_broken=no
  284.       ],[
  285.         vim_cv_getcwd_broken=yes
  286. ***************
  287. *** 3308,3314 ****
  288.   
  289.   AC_CACHE_CHECK([whether stat() ignores a trailing slash], [vim_cv_stat_ignores_slash],
  290.     [
  291. !     AC_RUN_IFELSE([[
  292.   #include "confdefs.h"
  293.   #if STDC_HEADERS
  294.   # include <stdlib.h>
  295. --- 3308,3314 ----
  296.   
  297.   AC_CACHE_CHECK([whether stat() ignores a trailing slash], [vim_cv_stat_ignores_slash],
  298.     [
  299. !     AC_RUN_IFELSE([AC_LANG_SOURCE([[
  300.   #include "confdefs.h"
  301.   #if STDC_HEADERS
  302.   # include <stdlib.h>
  303. ***************
  304. *** 3317,3323 ****
  305.   #include <sys/types.h>
  306.   #include <sys/stat.h>
  307.   main() {struct stat st;  exit(stat("configure/", &st) != 0); }
  308. !     ]],[
  309.         vim_cv_stat_ignores_slash=yes
  310.       ],[
  311.         vim_cv_stat_ignores_slash=no
  312. --- 3317,3323 ----
  313.   #include <sys/types.h>
  314.   #include <sys/stat.h>
  315.   main() {struct stat st;  exit(stat("configure/", &st) != 0); }
  316. !     ]])],[
  317.         vim_cv_stat_ignores_slash=yes
  318.       ],[
  319.         vim_cv_stat_ignores_slash=no
  320. ***************
  321. *** 3631,3637 ****
  322.   
  323.   AC_CACHE_CHECK([whether memmove handles overlaps],[vim_cv_memmove_handles_overlap],
  324.     [
  325. !     AC_RUN_IFELSE([[#define mch_memmove(s,d,l) memmove(d,s,l) $bcopy_test_prog]],
  326.         [
  327.       vim_cv_memmove_handles_overlap=yes
  328.         ],[
  329. --- 3631,3637 ----
  330.   
  331.   AC_CACHE_CHECK([whether memmove handles overlaps],[vim_cv_memmove_handles_overlap],
  332.     [
  333. !     AC_RUN_IFELSE([AC_LANG_SOURCE([[#define mch_memmove(s,d,l) memmove(d,s,l) $bcopy_test_prog]])],
  334.         [
  335.       vim_cv_memmove_handles_overlap=yes
  336.         ],[
  337. ***************
  338. *** 3646,3652 ****
  339.   else
  340.     AC_CACHE_CHECK([whether bcopy handles overlaps],[vim_cv_bcopy_handles_overlap],
  341.       [
  342. !       AC_RUN_IFELSE([[#define mch_bcopy(s,d,l) bcopy(d,s,l) $bcopy_test_prog]],
  343.         [
  344.       vim_cv_bcopy_handles_overlap=yes
  345.         ],[
  346. --- 3646,3652 ----
  347.   else
  348.     AC_CACHE_CHECK([whether bcopy handles overlaps],[vim_cv_bcopy_handles_overlap],
  349.       [
  350. !       AC_RUN_IFELSE([AC_LANG_SOURCE([[#define mch_bcopy(s,d,l) bcopy(d,s,l) $bcopy_test_prog]])],
  351.         [
  352.       vim_cv_bcopy_handles_overlap=yes
  353.         ],[
  354. ***************
  355. *** 3661,3667 ****
  356.     else
  357.       AC_CACHE_CHECK([whether memcpy handles overlaps],[vim_cv_memcpy_handles_overlap],
  358.         [
  359. !     AC_RUN_IFELSE([[#define mch_memcpy(s,d,l) memcpy(d,s,l) $bcopy_test_prog]],
  360.         [
  361.           vim_cv_memcpy_handles_overlap=yes
  362.         ],[
  363. --- 3661,3667 ----
  364.     else
  365.       AC_CACHE_CHECK([whether memcpy handles overlaps],[vim_cv_memcpy_handles_overlap],
  366.         [
  367. !     AC_RUN_IFELSE([AC_LANG_SOURCE([[#define mch_memcpy(s,d,l) memcpy(d,s,l) $bcopy_test_prog]])],
  368.         [
  369.           vim_cv_memcpy_handles_overlap=yes
  370.         ],[
  371. *** ../vim-7.4.222/src/auto/configure    2014-03-27 17:19:05.868676325 +0100
  372. --- src/auto/configure    2014-03-27 17:35:39.660691553 +0100
  373. ***************
  374. *** 1,11 ****
  375.   #! /bin/sh
  376.   # Guess values for system-dependent variables and create Makefiles.
  377. ! # Generated by GNU Autoconf 2.65.
  378.   #
  379.   #
  380. ! # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
  381. ! # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
  382. ! # Inc.
  383.   #
  384.   #
  385.   # This configure script is free software; the Free Software Foundation
  386. --- 1,9 ----
  387.   #! /bin/sh
  388.   # Guess values for system-dependent variables and create Makefiles.
  389. ! # Generated by GNU Autoconf 2.69.
  390.   #
  391.   #
  392. ! # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
  393.   #
  394.   #
  395.   # This configure script is free software; the Free Software Foundation
  396. ***************
  397. *** 89,94 ****
  398. --- 87,93 ----
  399.   IFS=" ""    $as_nl"
  400.   
  401.   # Find who we are.  Look in the path if we contain no directory separator.
  402. + as_myself=
  403.   case $0 in #((
  404.     *[\\/]* ) as_myself=$0 ;;
  405.     *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  406. ***************
  407. *** 133,138 ****
  408. --- 132,162 ----
  409.   # CDPATH.
  410.   (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  411.   
  412. + # Use a proper internal environment variable to ensure we don't fall
  413. +   # into an infinite loop, continuously re-executing ourselves.
  414. +   if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
  415. +     _as_can_reexec=no; export _as_can_reexec;
  416. +     # We cannot yet assume a decent shell, so we have to provide a
  417. + # neutralization value for shells without unset; and this also
  418. + # works around shells that cannot unset nonexistent variables.
  419. + # Preserve -v and -x to the replacement shell.
  420. + BASH_ENV=/dev/null
  421. + ENV=/dev/null
  422. + (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
  423. + case $- in # ((((
  424. +   *v*x* | *x*v* ) as_opts=-vx ;;
  425. +   *v* ) as_opts=-v ;;
  426. +   *x* ) as_opts=-x ;;
  427. +   * ) as_opts= ;;
  428. + esac
  429. + exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
  430. + # Admittedly, this is quite paranoid, since all the known shells bail
  431. + # out after a failed `exec'.
  432. + $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
  433. + as_fn_exit 255
  434. +   fi
  435. +   # We don't want this to propagate to other subprocesses.
  436. +           { _as_can_reexec=; unset _as_can_reexec;}
  437.   if test "x$CONFIG_SHELL" = x; then
  438.     as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
  439.     emulate sh
  440. ***************
  441. *** 166,172 ****
  442.   else
  443.     exitcode=1; echo positional parameters were not saved.
  444.   fi
  445. ! test x\$exitcode = x0 || exit 1"
  446.     as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
  447.     as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
  448.     eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
  449. --- 190,197 ----
  450.   else
  451.     exitcode=1; echo positional parameters were not saved.
  452.   fi
  453. ! test x\$exitcode = x0 || exit 1
  454. ! test -x / || exit 1"
  455.     as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
  456.     as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
  457.     eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
  458. ***************
  459. *** 211,224 ****
  460.   
  461.   
  462.         if test "x$CONFIG_SHELL" != x; then :
  463. !   # We cannot yet assume a decent shell, so we have to provide a
  464. !     # neutralization value for shells without unset; and this also
  465. !     # works around shells that cannot unset nonexistent variables.
  466. !     BASH_ENV=/dev/null
  467. !     ENV=/dev/null
  468. !     (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
  469. !     export CONFIG_SHELL
  470. !     exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
  471.   fi
  472.   
  473.       if test x$as_have_required = xno; then :
  474. --- 236,260 ----
  475.   
  476.   
  477.         if test "x$CONFIG_SHELL" != x; then :
  478. !   export CONFIG_SHELL
  479. !              # We cannot yet assume a decent shell, so we have to provide a
  480. ! # neutralization value for shells without unset; and this also
  481. ! # works around shells that cannot unset nonexistent variables.
  482. ! # Preserve -v and -x to the replacement shell.
  483. ! BASH_ENV=/dev/null
  484. ! ENV=/dev/null
  485. ! (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
  486. ! case $- in # ((((
  487. !   *v*x* | *x*v* ) as_opts=-vx ;;
  488. !   *v* ) as_opts=-v ;;
  489. !   *x* ) as_opts=-x ;;
  490. !   * ) as_opts= ;;
  491. ! esac
  492. ! exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
  493. ! # Admittedly, this is quite paranoid, since all the known shells bail
  494. ! # out after a failed `exec'.
  495. ! $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
  496. ! exit 255
  497.   fi
  498.   
  499.       if test x$as_have_required = xno; then :
  500. ***************
  501. *** 316,325 ****
  502.         test -d "$as_dir" && break
  503.       done
  504.       test -z "$as_dirs" || eval "mkdir $as_dirs"
  505. !   } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
  506.   
  507.   
  508.   } # as_fn_mkdir_p
  509.   # as_fn_append VAR VALUE
  510.   # ----------------------
  511.   # Append the text in VALUE to the end of the definition contained in VAR. Take
  512. --- 352,369 ----
  513.         test -d "$as_dir" && break
  514.       done
  515.       test -z "$as_dirs" || eval "mkdir $as_dirs"
  516. !   } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
  517.   
  518.   
  519.   } # as_fn_mkdir_p
  520. + # as_fn_executable_p FILE
  521. + # -----------------------
  522. + # Test if FILE is an executable regular file.
  523. + as_fn_executable_p ()
  524. + {
  525. +   test -f "$1" && test -x "$1"
  526. + } # as_fn_executable_p
  527.   # as_fn_append VAR VALUE
  528.   # ----------------------
  529.   # Append the text in VALUE to the end of the definition contained in VAR. Take
  530. ***************
  531. *** 356,374 ****
  532.   fi # as_fn_arith
  533.   
  534.   
  535. ! # as_fn_error ERROR [LINENO LOG_FD]
  536. ! # ---------------------------------
  537.   # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
  538.   # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
  539. ! # script with status $?, using 1 if that was 0.
  540.   as_fn_error ()
  541.   {
  542. !   as_status=$?; test $as_status -eq 0 && as_status=1
  543. !   if test "$3"; then
  544. !     as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  545. !     $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
  546.     fi
  547. !   $as_echo "$as_me: error: $1" >&2
  548.     as_fn_exit $as_status
  549.   } # as_fn_error
  550.   
  551. --- 400,418 ----
  552.   fi # as_fn_arith
  553.   
  554.   
  555. ! # as_fn_error STATUS ERROR [LINENO LOG_FD]
  556. ! # ----------------------------------------
  557.   # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
  558.   # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
  559. ! # script with STATUS, using 1 if that was 0.
  560.   as_fn_error ()
  561.   {
  562. !   as_status=$1; test $as_status -eq 0 && as_status=1
  563. !   if test "$4"; then
  564. !     as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  565. !     $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
  566.     fi
  567. !   $as_echo "$as_me: error: $2" >&2
  568.     as_fn_exit $as_status
  569.   } # as_fn_error
  570.   
  571. ***************
  572. *** 441,446 ****
  573. --- 485,494 ----
  574.     chmod +x "$as_me.lineno" ||
  575.       { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
  576.   
  577. +   # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
  578. +   # already done that, so ensure we don't try to do so again and fall
  579. +   # in an infinite loop.  This has already happened in practice.
  580. +   _as_can_reexec=no; export _as_can_reexec
  581.     # Don't try to exec as it changes $[0], causing all sort of problems
  582.     # (the dirname of $[0] is not the place where we might find the
  583.     # original and so on.  Autoconf is especially sensitive to this).
  584. ***************
  585. *** 475,490 ****
  586.       # ... but there are two gotchas:
  587.       # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
  588.       # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
  589. !     # In both cases, we have to default to `cp -p'.
  590.       ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  591. !       as_ln_s='cp -p'
  592.     elif ln conf$$.file conf$$ 2>/dev/null; then
  593.       as_ln_s=ln
  594.     else
  595. !     as_ln_s='cp -p'
  596.     fi
  597.   else
  598. !   as_ln_s='cp -p'
  599.   fi
  600.   rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  601.   rmdir conf$$.dir 2>/dev/null
  602. --- 523,538 ----
  603.       # ... but there are two gotchas:
  604.       # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
  605.       # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
  606. !     # In both cases, we have to default to `cp -pR'.
  607.       ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  608. !       as_ln_s='cp -pR'
  609.     elif ln conf$$.file conf$$ 2>/dev/null; then
  610.       as_ln_s=ln
  611.     else
  612. !     as_ln_s='cp -pR'
  613.     fi
  614.   else
  615. !   as_ln_s='cp -pR'
  616.   fi
  617.   rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  618.   rmdir conf$$.dir 2>/dev/null
  619. ***************
  620. *** 496,523 ****
  621.     as_mkdir_p=false
  622.   fi
  623.   
  624. ! if test -x / >/dev/null 2>&1; then
  625. !   as_test_x='test -x'
  626. ! else
  627. !   if ls -dL / >/dev/null 2>&1; then
  628. !     as_ls_L_option=L
  629. !   else
  630. !     as_ls_L_option=
  631. !   fi
  632. !   as_test_x='
  633. !     eval sh -c '\''
  634. !       if test -d "$1"; then
  635. !     test -d "$1/.";
  636. !       else
  637. !     case $1 in #(
  638. !     -*)set "./$1";;
  639. !     esac;
  640. !     case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
  641. !     ???[sx]*):;;*)false;;esac;fi
  642. !     '\'' sh
  643. !   '
  644. ! fi
  645. ! as_executable_p=$as_test_x
  646.   
  647.   # Sed expression to map a string onto a valid CPP name.
  648.   as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  649. --- 544,551 ----
  650.     as_mkdir_p=false
  651.   fi
  652.   
  653. ! as_test_x='test -x'
  654. ! as_executable_p=as_fn_executable_p
  655.   
  656.   # Sed expression to map a string onto a valid CPP name.
  657.   as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  658. ***************
  659. *** 530,536 ****
  660.   exec 6>&1
  661.   
  662.   # Name of the host.
  663. ! # hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
  664.   # so uname gets run too.
  665.   ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
  666.   
  667. --- 558,564 ----
  668.   exec 6>&1
  669.   
  670.   # Name of the host.
  671. ! # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
  672.   # so uname gets run too.
  673.   ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
  674.   
  675. ***************
  676. *** 872,879 ****
  677.     fi
  678.   
  679.     case $ac_option in
  680. !   *=*)    ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
  681. !   *)    ac_optarg=yes ;;
  682.     esac
  683.   
  684.     # Accept the important Cygnus configure options, so we can diagnose typos.
  685. --- 900,908 ----
  686.     fi
  687.   
  688.     case $ac_option in
  689. !   *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
  690. !   *=)   ac_optarg= ;;
  691. !   *)    ac_optarg=yes ;;
  692.     esac
  693.   
  694.     # Accept the important Cygnus configure options, so we can diagnose typos.
  695. ***************
  696. *** 918,924 ****
  697.       ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
  698.       # Reject names that are not valid shell variable names.
  699.       expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  700. !       as_fn_error "invalid feature name: $ac_useropt"
  701.       ac_useropt_orig=$ac_useropt
  702.       ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  703.       case $ac_user_opts in
  704. --- 947,953 ----
  705.       ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
  706.       # Reject names that are not valid shell variable names.
  707.       expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  708. !       as_fn_error $? "invalid feature name: $ac_useropt"
  709.       ac_useropt_orig=$ac_useropt
  710.       ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  711.       case $ac_user_opts in
  712. ***************
  713. *** 944,950 ****
  714.       ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
  715.       # Reject names that are not valid shell variable names.
  716.       expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  717. !       as_fn_error "invalid feature name: $ac_useropt"
  718.       ac_useropt_orig=$ac_useropt
  719.       ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  720.       case $ac_user_opts in
  721. --- 973,979 ----
  722.       ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
  723.       # Reject names that are not valid shell variable names.
  724.       expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  725. !       as_fn_error $? "invalid feature name: $ac_useropt"
  726.       ac_useropt_orig=$ac_useropt
  727.       ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  728.       case $ac_user_opts in
  729. ***************
  730. *** 1148,1154 ****
  731.       ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
  732.       # Reject names that are not valid shell variable names.
  733.       expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  734. !       as_fn_error "invalid package name: $ac_useropt"
  735.       ac_useropt_orig=$ac_useropt
  736.       ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  737.       case $ac_user_opts in
  738. --- 1177,1183 ----
  739.       ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
  740.       # Reject names that are not valid shell variable names.
  741.       expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  742. !       as_fn_error $? "invalid package name: $ac_useropt"
  743.       ac_useropt_orig=$ac_useropt
  744.       ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  745.       case $ac_user_opts in
  746. ***************
  747. *** 1164,1170 ****
  748.       ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
  749.       # Reject names that are not valid shell variable names.
  750.       expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  751. !       as_fn_error "invalid package name: $ac_useropt"
  752.       ac_useropt_orig=$ac_useropt
  753.       ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  754.       case $ac_user_opts in
  755. --- 1193,1199 ----
  756.       ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
  757.       # Reject names that are not valid shell variable names.
  758.       expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  759. !       as_fn_error $? "invalid package name: $ac_useropt"
  760.       ac_useropt_orig=$ac_useropt
  761.       ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  762.       case $ac_user_opts in
  763. ***************
  764. *** 1194,1201 ****
  765.     | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  766.       x_libraries=$ac_optarg ;;
  767.   
  768. !   -*) as_fn_error "unrecognized option: \`$ac_option'
  769. ! Try \`$0 --help' for more information."
  770.       ;;
  771.   
  772.     *=*)
  773. --- 1223,1230 ----
  774.     | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  775.       x_libraries=$ac_optarg ;;
  776.   
  777. !   -*) as_fn_error $? "unrecognized option: \`$ac_option'
  778. ! Try \`$0 --help' for more information"
  779.       ;;
  780.   
  781.     *=*)
  782. ***************
  783. *** 1203,1209 ****
  784.       # Reject names that are not valid shell variable names.
  785.       case $ac_envvar in #(
  786.         '' | [0-9]* | *[!_$as_cr_alnum]* )
  787. !       as_fn_error "invalid variable name: \`$ac_envvar'" ;;
  788.       esac
  789.       eval $ac_envvar=\$ac_optarg
  790.       export $ac_envvar ;;
  791. --- 1232,1238 ----
  792.       # Reject names that are not valid shell variable names.
  793.       case $ac_envvar in #(
  794.         '' | [0-9]* | *[!_$as_cr_alnum]* )
  795. !       as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
  796.       esac
  797.       eval $ac_envvar=\$ac_optarg
  798.       export $ac_envvar ;;
  799. ***************
  800. *** 1213,1219 ****
  801.       $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
  802.       expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
  803.         $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
  804. !     : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
  805.       ;;
  806.   
  807.     esac
  808. --- 1242,1248 ----
  809.       $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
  810.       expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
  811.         $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
  812. !     : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
  813.       ;;
  814.   
  815.     esac
  816. ***************
  817. *** 1221,1233 ****
  818.   
  819.   if test -n "$ac_prev"; then
  820.     ac_option=--`echo $ac_prev | sed 's/_/-/g'`
  821. !   as_fn_error "missing argument to $ac_option"
  822.   fi
  823.   
  824.   if test -n "$ac_unrecognized_opts"; then
  825.     case $enable_option_checking in
  826.       no) ;;
  827. !     fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;;
  828.       *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
  829.     esac
  830.   fi
  831. --- 1250,1262 ----
  832.   
  833.   if test -n "$ac_prev"; then
  834.     ac_option=--`echo $ac_prev | sed 's/_/-/g'`
  835. !   as_fn_error $? "missing argument to $ac_option"
  836.   fi
  837.   
  838.   if test -n "$ac_unrecognized_opts"; then
  839.     case $enable_option_checking in
  840.       no) ;;
  841. !     fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
  842.       *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
  843.     esac
  844.   fi
  845. ***************
  846. *** 1250,1256 ****
  847.       [\\/$]* | ?:[\\/]* )  continue;;
  848.       NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
  849.     esac
  850. !   as_fn_error "expected an absolute directory name for --$ac_var: $ac_val"
  851.   done
  852.   
  853.   # There might be people who depend on the old broken behavior: `$host'
  854. --- 1279,1285 ----
  855.       [\\/$]* | ?:[\\/]* )  continue;;
  856.       NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
  857.     esac
  858. !   as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
  859.   done
  860.   
  861.   # There might be people who depend on the old broken behavior: `$host'
  862. ***************
  863. *** 1264,1271 ****
  864.   if test "x$host_alias" != x; then
  865.     if test "x$build_alias" = x; then
  866.       cross_compiling=maybe
  867. -     $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
  868. -     If a cross compiler is detected then cross compile mode will be used." >&2
  869.     elif test "x$build_alias" != "x$host_alias"; then
  870.       cross_compiling=yes
  871.     fi
  872. --- 1293,1298 ----
  873. ***************
  874. *** 1280,1288 ****
  875.   ac_pwd=`pwd` && test -n "$ac_pwd" &&
  876.   ac_ls_di=`ls -di .` &&
  877.   ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
  878. !   as_fn_error "working directory cannot be determined"
  879.   test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
  880. !   as_fn_error "pwd does not report name of working directory"
  881.   
  882.   
  883.   # Find the source files, if location was not specified.
  884. --- 1307,1315 ----
  885.   ac_pwd=`pwd` && test -n "$ac_pwd" &&
  886.   ac_ls_di=`ls -di .` &&
  887.   ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
  888. !   as_fn_error $? "working directory cannot be determined"
  889.   test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
  890. !   as_fn_error $? "pwd does not report name of working directory"
  891.   
  892.   
  893.   # Find the source files, if location was not specified.
  894. ***************
  895. *** 1321,1331 ****
  896.   fi
  897.   if test ! -r "$srcdir/$ac_unique_file"; then
  898.     test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
  899. !   as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
  900.   fi
  901.   ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
  902.   ac_abs_confdir=`(
  903. !     cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg"
  904.       pwd)`
  905.   # When building in place, set srcdir=.
  906.   if test "$ac_abs_confdir" = "$ac_pwd"; then
  907. --- 1348,1358 ----
  908.   fi
  909.   if test ! -r "$srcdir/$ac_unique_file"; then
  910.     test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
  911. !   as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
  912.   fi
  913.   ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
  914.   ac_abs_confdir=`(
  915. !     cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
  916.       pwd)`
  917.   # When building in place, set srcdir=.
  918.   if test "$ac_abs_confdir" = "$ac_pwd"; then
  919. ***************
  920. *** 1365,1371 ****
  921.         --help=short        display options specific to this package
  922.         --help=recursive    display the short help of all the included packages
  923.     -V, --version           display version information and exit
  924. !   -q, --quiet, --silent   do not print \`checking...' messages
  925.         --cache-file=FILE   cache test results in FILE [disabled]
  926.     -C, --config-cache      alias for \`--cache-file=config.cache'
  927.     -n, --no-create         do not create output files
  928. --- 1392,1398 ----
  929.         --help=short        display options specific to this package
  930.         --help=recursive    display the short help of all the included packages
  931.     -V, --version           display version information and exit
  932. !   -q, --quiet, --silent   do not print \`checking ...' messages
  933.         --cache-file=FILE   cache test results in FILE [disabled]
  934.     -C, --config-cache      alias for \`--cache-file=config.cache'
  935.     -n, --no-create         do not create output files
  936. ***************
  937. *** 1563,1571 ****
  938.   if $ac_init_version; then
  939.     cat <<\_ACEOF
  940.   configure
  941. ! generated by GNU Autoconf 2.65
  942.   
  943. ! Copyright (C) 2009 Free Software Foundation, Inc.
  944.   This configure script is free software; the Free Software Foundation
  945.   gives unlimited permission to copy, distribute and modify it.
  946.   _ACEOF
  947. --- 1590,1598 ----
  948.   if $ac_init_version; then
  949.     cat <<\_ACEOF
  950.   configure
  951. ! generated by GNU Autoconf 2.69
  952.   
  953. ! Copyright (C) 2012 Free Software Foundation, Inc.
  954.   This configure script is free software; the Free Software Foundation
  955.   gives unlimited permission to copy, distribute and modify it.
  956.   _ACEOF
  957. ***************
  958. *** 1609,1615 ****
  959.   
  960.       ac_retval=1
  961.   fi
  962. !   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  963.     as_fn_set_status $ac_retval
  964.   
  965.   } # ac_fn_c_try_compile
  966. --- 1636,1642 ----
  967.   
  968.       ac_retval=1
  969.   fi
  970. !   eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  971.     as_fn_set_status $ac_retval
  972.   
  973.   } # ac_fn_c_try_compile
  974. ***************
  975. *** 1635,1641 ****
  976.       mv -f conftest.er1 conftest.err
  977.     fi
  978.     $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  979. !   test $ac_status = 0; } >/dev/null && {
  980.        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
  981.        test ! -s conftest.err
  982.          }; then :
  983. --- 1662,1668 ----
  984.       mv -f conftest.er1 conftest.err
  985.     fi
  986.     $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  987. !   test $ac_status = 0; } > conftest.i && {
  988.        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
  989.        test ! -s conftest.err
  990.          }; then :
  991. ***************
  992. *** 1646,1652 ****
  993.   
  994.       ac_retval=1
  995.   fi
  996. !   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  997.     as_fn_set_status $ac_retval
  998.   
  999.   } # ac_fn_c_try_cpp
  1000. --- 1673,1679 ----
  1001.   
  1002.       ac_retval=1
  1003.   fi
  1004. !   eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  1005.     as_fn_set_status $ac_retval
  1006.   
  1007.   } # ac_fn_c_try_cpp
  1008. ***************
  1009. *** 1678,1684 ****
  1010.        test ! -s conftest.err
  1011.          } && test -s conftest$ac_exeext && {
  1012.        test "$cross_compiling" = yes ||
  1013. !      $as_test_x conftest$ac_exeext
  1014.          }; then :
  1015.     ac_retval=0
  1016.   else
  1017. --- 1705,1711 ----
  1018.        test ! -s conftest.err
  1019.          } && test -s conftest$ac_exeext && {
  1020.        test "$cross_compiling" = yes ||
  1021. !      test -x conftest$ac_exeext
  1022.          }; then :
  1023.     ac_retval=0
  1024.   else
  1025. ***************
  1026. *** 1692,1698 ****
  1027.     # interfere with the next link command; also delete a directory that is
  1028.     # left behind by Apple's compiler.  We do this before executing the actions.
  1029.     rm -rf conftest.dSYM conftest_ipa8_conftest.oo
  1030. !   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1031.     as_fn_set_status $ac_retval
  1032.   
  1033.   } # ac_fn_c_try_link
  1034. --- 1719,1725 ----
  1035.     # interfere with the next link command; also delete a directory that is
  1036.     # left behind by Apple's compiler.  We do this before executing the actions.
  1037.     rm -rf conftest.dSYM conftest_ipa8_conftest.oo
  1038. !   eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  1039.     as_fn_set_status $ac_retval
  1040.   
  1041.   } # ac_fn_c_try_link
  1042. ***************
  1043. *** 1734,1740 ****
  1044.          ac_retval=$ac_status
  1045.   fi
  1046.     rm -rf conftest.dSYM conftest_ipa8_conftest.oo
  1047. !   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1048.     as_fn_set_status $ac_retval
  1049.   
  1050.   } # ac_fn_c_try_run
  1051. --- 1761,1767 ----
  1052.          ac_retval=$ac_status
  1053.   fi
  1054.     rm -rf conftest.dSYM conftest_ipa8_conftest.oo
  1055. !   eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  1056.     as_fn_set_status $ac_retval
  1057.   
  1058.   } # ac_fn_c_try_run
  1059. ***************
  1060. *** 1747,1756 ****
  1061.   ac_fn_c_check_header_mongrel ()
  1062.   {
  1063.     as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1064. !   if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
  1065.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1066.   $as_echo_n "checking for $2... " >&6; }
  1067. ! if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
  1068.     $as_echo_n "(cached) " >&6
  1069.   fi
  1070.   eval ac_res=\$$3
  1071. --- 1774,1783 ----
  1072.   ac_fn_c_check_header_mongrel ()
  1073.   {
  1074.     as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1075. !   if eval \${$3+:} false; then :
  1076.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1077.   $as_echo_n "checking for $2... " >&6; }
  1078. ! if eval \${$3+:} false; then :
  1079.     $as_echo_n "(cached) " >&6
  1080.   fi
  1081.   eval ac_res=\$$3
  1082. ***************
  1083. *** 1786,1792 ****
  1084.   else
  1085.     ac_header_preproc=no
  1086.   fi
  1087. ! rm -f conftest.err conftest.$ac_ext
  1088.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
  1089.   $as_echo "$ac_header_preproc" >&6; }
  1090.   
  1091. --- 1813,1819 ----
  1092.   else
  1093.     ac_header_preproc=no
  1094.   fi
  1095. ! rm -f conftest.err conftest.i conftest.$ac_ext
  1096.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
  1097.   $as_echo "$ac_header_preproc" >&6; }
  1098.   
  1099. ***************
  1100. *** 1813,1819 ****
  1101.   esac
  1102.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1103.   $as_echo_n "checking for $2... " >&6; }
  1104. ! if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
  1105.     $as_echo_n "(cached) " >&6
  1106.   else
  1107.     eval "$3=\$ac_header_compiler"
  1108. --- 1840,1846 ----
  1109.   esac
  1110.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1111.   $as_echo_n "checking for $2... " >&6; }
  1112. ! if eval \${$3+:} false; then :
  1113.     $as_echo_n "(cached) " >&6
  1114.   else
  1115.     eval "$3=\$ac_header_compiler"
  1116. ***************
  1117. *** 1822,1828 ****
  1118.              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1119.   $as_echo "$ac_res" >&6; }
  1120.   fi
  1121. !   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1122.   
  1123.   } # ac_fn_c_check_header_mongrel
  1124.   
  1125. --- 1849,1855 ----
  1126.              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1127.   $as_echo "$ac_res" >&6; }
  1128.   fi
  1129. !   eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  1130.   
  1131.   } # ac_fn_c_check_header_mongrel
  1132.   
  1133. ***************
  1134. *** 1835,1841 ****
  1135.     as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1136.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1137.   $as_echo_n "checking for $2... " >&6; }
  1138. ! if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
  1139.     $as_echo_n "(cached) " >&6
  1140.   else
  1141.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1142. --- 1862,1868 ----
  1143.     as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1144.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1145.   $as_echo_n "checking for $2... " >&6; }
  1146. ! if eval \${$3+:} false; then :
  1147.     $as_echo_n "(cached) " >&6
  1148.   else
  1149.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1150. ***************
  1151. *** 1853,1859 ****
  1152.   eval ac_res=\$$3
  1153.              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1154.   $as_echo "$ac_res" >&6; }
  1155. !   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1156.   
  1157.   } # ac_fn_c_check_header_compile
  1158.   
  1159. --- 1880,1886 ----
  1160.   eval ac_res=\$$3
  1161.              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1162.   $as_echo "$ac_res" >&6; }
  1163. !   eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  1164.   
  1165.   } # ac_fn_c_check_header_compile
  1166.   
  1167. ***************
  1168. *** 1865,1871 ****
  1169.     as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1170.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1171.   $as_echo_n "checking for $2... " >&6; }
  1172. ! if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
  1173.     $as_echo_n "(cached) " >&6
  1174.   else
  1175.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1176. --- 1892,1898 ----
  1177.     as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1178.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1179.   $as_echo_n "checking for $2... " >&6; }
  1180. ! if eval \${$3+:} false; then :
  1181.     $as_echo_n "(cached) " >&6
  1182.   else
  1183.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1184. ***************
  1185. *** 1920,1926 ****
  1186.   eval ac_res=\$$3
  1187.              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1188.   $as_echo "$ac_res" >&6; }
  1189. !   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1190.   
  1191.   } # ac_fn_c_check_func
  1192.   
  1193. --- 1947,1953 ----
  1194.   eval ac_res=\$$3
  1195.              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1196.   $as_echo "$ac_res" >&6; }
  1197. !   eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  1198.   
  1199.   } # ac_fn_c_check_func
  1200.   
  1201. ***************
  1202. *** 1933,1939 ****
  1203.     as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1204.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1205.   $as_echo_n "checking for $2... " >&6; }
  1206. ! if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
  1207.     $as_echo_n "(cached) " >&6
  1208.   else
  1209.     eval "$3=no"
  1210. --- 1960,1966 ----
  1211.     as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1212.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1213.   $as_echo_n "checking for $2... " >&6; }
  1214. ! if eval \${$3+:} false; then :
  1215.     $as_echo_n "(cached) " >&6
  1216.   else
  1217.     eval "$3=no"
  1218. ***************
  1219. *** 1974,1980 ****
  1220.   eval ac_res=\$$3
  1221.              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1222.   $as_echo "$ac_res" >&6; }
  1223. !   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1224.   
  1225.   } # ac_fn_c_check_type
  1226.   
  1227. --- 2001,2007 ----
  1228.   eval ac_res=\$$3
  1229.              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1230.   $as_echo "$ac_res" >&6; }
  1231. !   eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  1232.   
  1233.   } # ac_fn_c_check_type
  1234.   
  1235. ***************
  1236. *** 1987,1993 ****
  1237.     as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1238.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uint$2_t" >&5
  1239.   $as_echo_n "checking for uint$2_t... " >&6; }
  1240. ! if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
  1241.     $as_echo_n "(cached) " >&6
  1242.   else
  1243.     eval "$3=no"
  1244. --- 2014,2020 ----
  1245.     as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1246.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uint$2_t" >&5
  1247.   $as_echo_n "checking for uint$2_t... " >&6; }
  1248. ! if eval \${$3+:} false; then :
  1249.     $as_echo_n "(cached) " >&6
  1250.   else
  1251.     eval "$3=no"
  1252. ***************
  1253. *** 2002,2008 ****
  1254.   main ()
  1255.   {
  1256.   static int test_array [1 - 2 * !((($ac_type) -1 >> ($2 / 2 - 1)) >> ($2 / 2 - 1) == 3)];
  1257. ! test_array [0] = 0
  1258.   
  1259.     ;
  1260.     return 0;
  1261. --- 2029,2036 ----
  1262.   main ()
  1263.   {
  1264.   static int test_array [1 - 2 * !((($ac_type) -1 >> ($2 / 2 - 1)) >> ($2 / 2 - 1) == 3)];
  1265. ! test_array [0] = 0;
  1266. ! return test_array [0];
  1267.   
  1268.     ;
  1269.     return 0;
  1270. ***************
  1271. *** 2017,2024 ****
  1272.   esac
  1273.   fi
  1274.   rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  1275. !        eval as_val=\$$3
  1276. !    if test "x$as_val" = x""no; then :
  1277.   
  1278.   else
  1279.     break
  1280. --- 2045,2051 ----
  1281.   esac
  1282.   fi
  1283.   rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  1284. !        if eval test \"x\$"$3"\" = x"no"; then :
  1285.   
  1286.   else
  1287.     break
  1288. ***************
  1289. *** 2028,2034 ****
  1290.   eval ac_res=\$$3
  1291.              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1292.   $as_echo "$ac_res" >&6; }
  1293. !   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1294.   
  1295.   } # ac_fn_c_find_uintX_t
  1296.   
  1297. --- 2055,2061 ----
  1298.   eval ac_res=\$$3
  1299.              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1300.   $as_echo "$ac_res" >&6; }
  1301. !   eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  1302.   
  1303.   } # ac_fn_c_find_uintX_t
  1304.   
  1305. ***************
  1306. *** 2049,2055 ****
  1307.   main ()
  1308.   {
  1309.   static int test_array [1 - 2 * !(($2) >= 0)];
  1310. ! test_array [0] = 0
  1311.   
  1312.     ;
  1313.     return 0;
  1314. --- 2076,2083 ----
  1315.   main ()
  1316.   {
  1317.   static int test_array [1 - 2 * !(($2) >= 0)];
  1318. ! test_array [0] = 0;
  1319. ! return test_array [0];
  1320.   
  1321.     ;
  1322.     return 0;
  1323. ***************
  1324. *** 2065,2071 ****
  1325.   main ()
  1326.   {
  1327.   static int test_array [1 - 2 * !(($2) <= $ac_mid)];
  1328. ! test_array [0] = 0
  1329.   
  1330.     ;
  1331.     return 0;
  1332. --- 2093,2100 ----
  1333.   main ()
  1334.   {
  1335.   static int test_array [1 - 2 * !(($2) <= $ac_mid)];
  1336. ! test_array [0] = 0;
  1337. ! return test_array [0];
  1338.   
  1339.     ;
  1340.     return 0;
  1341. ***************
  1342. *** 2091,2097 ****
  1343.   main ()
  1344.   {
  1345.   static int test_array [1 - 2 * !(($2) < 0)];
  1346. ! test_array [0] = 0
  1347.   
  1348.     ;
  1349.     return 0;
  1350. --- 2120,2127 ----
  1351.   main ()
  1352.   {
  1353.   static int test_array [1 - 2 * !(($2) < 0)];
  1354. ! test_array [0] = 0;
  1355. ! return test_array [0];
  1356.   
  1357.     ;
  1358.     return 0;
  1359. ***************
  1360. *** 2107,2113 ****
  1361.   main ()
  1362.   {
  1363.   static int test_array [1 - 2 * !(($2) >= $ac_mid)];
  1364. ! test_array [0] = 0
  1365.   
  1366.     ;
  1367.     return 0;
  1368. --- 2137,2144 ----
  1369.   main ()
  1370.   {
  1371.   static int test_array [1 - 2 * !(($2) >= $ac_mid)];
  1372. ! test_array [0] = 0;
  1373. ! return test_array [0];
  1374.   
  1375.     ;
  1376.     return 0;
  1377. ***************
  1378. *** 2141,2147 ****
  1379.   main ()
  1380.   {
  1381.   static int test_array [1 - 2 * !(($2) <= $ac_mid)];
  1382. ! test_array [0] = 0
  1383.   
  1384.     ;
  1385.     return 0;
  1386. --- 2172,2179 ----
  1387.   main ()
  1388.   {
  1389.   static int test_array [1 - 2 * !(($2) <= $ac_mid)];
  1390. ! test_array [0] = 0;
  1391. ! return test_array [0];
  1392.   
  1393.     ;
  1394.     return 0;
  1395. ***************
  1396. *** 2205,2211 ****
  1397.   rm -f conftest.val
  1398.   
  1399.     fi
  1400. !   eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1401.     as_fn_set_status $ac_retval
  1402.   
  1403.   } # ac_fn_c_compute_int
  1404. --- 2237,2243 ----
  1405.   rm -f conftest.val
  1406.   
  1407.     fi
  1408. !   eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  1409.     as_fn_set_status $ac_retval
  1410.   
  1411.   } # ac_fn_c_compute_int
  1412. ***************
  1413. *** 2214,2220 ****
  1414.   running configure, to aid debugging if configure makes a mistake.
  1415.   
  1416.   It was created by $as_me, which was
  1417. ! generated by GNU Autoconf 2.65.  Invocation command line was
  1418.   
  1419.     $ $0 $@
  1420.   
  1421. --- 2246,2252 ----
  1422.   running configure, to aid debugging if configure makes a mistake.
  1423.   
  1424.   It was created by $as_me, which was
  1425. ! generated by GNU Autoconf 2.69.  Invocation command line was
  1426.   
  1427.     $ $0 $@
  1428.   
  1429. ***************
  1430. *** 2324,2334 ****
  1431.     {
  1432.       echo
  1433.   
  1434. !     cat <<\_ASBOX
  1435. ! ## ---------------- ##
  1436.   ## Cache variables. ##
  1437. ! ## ---------------- ##
  1438. ! _ASBOX
  1439.       echo
  1440.       # The following way of writing the cache mishandles newlines in values,
  1441.   (
  1442. --- 2356,2364 ----
  1443.     {
  1444.       echo
  1445.   
  1446. !     $as_echo "## ---------------- ##
  1447.   ## Cache variables. ##
  1448. ! ## ---------------- ##"
  1449.       echo
  1450.       # The following way of writing the cache mishandles newlines in values,
  1451.   (
  1452. ***************
  1453. *** 2362,2372 ****
  1454.   )
  1455.       echo
  1456.   
  1457. !     cat <<\_ASBOX
  1458. ! ## ----------------- ##
  1459.   ## Output variables. ##
  1460. ! ## ----------------- ##
  1461. ! _ASBOX
  1462.       echo
  1463.       for ac_var in $ac_subst_vars
  1464.       do
  1465. --- 2392,2400 ----
  1466.   )
  1467.       echo
  1468.   
  1469. !     $as_echo "## ----------------- ##
  1470.   ## Output variables. ##
  1471. ! ## ----------------- ##"
  1472.       echo
  1473.       for ac_var in $ac_subst_vars
  1474.       do
  1475. ***************
  1476. *** 2379,2389 ****
  1477.       echo
  1478.   
  1479.       if test -n "$ac_subst_files"; then
  1480. !       cat <<\_ASBOX
  1481. ! ## ------------------- ##
  1482.   ## File substitutions. ##
  1483. ! ## ------------------- ##
  1484. ! _ASBOX
  1485.         echo
  1486.         for ac_var in $ac_subst_files
  1487.         do
  1488. --- 2407,2415 ----
  1489.       echo
  1490.   
  1491.       if test -n "$ac_subst_files"; then
  1492. !       $as_echo "## ------------------- ##
  1493.   ## File substitutions. ##
  1494. ! ## ------------------- ##"
  1495.         echo
  1496.         for ac_var in $ac_subst_files
  1497.         do
  1498. ***************
  1499. *** 2397,2407 ****
  1500.       fi
  1501.   
  1502.       if test -s confdefs.h; then
  1503. !       cat <<\_ASBOX
  1504. ! ## ----------- ##
  1505.   ## confdefs.h. ##
  1506. ! ## ----------- ##
  1507. ! _ASBOX
  1508.         echo
  1509.         cat confdefs.h
  1510.         echo
  1511. --- 2423,2431 ----
  1512.       fi
  1513.   
  1514.       if test -s confdefs.h; then
  1515. !       $as_echo "## ----------- ##
  1516.   ## confdefs.h. ##
  1517. ! ## ----------- ##"
  1518.         echo
  1519.         cat confdefs.h
  1520.         echo
  1521. ***************
  1522. *** 2456,2462 ****
  1523.   ac_site_file1=NONE
  1524.   ac_site_file2=NONE
  1525.   if test -n "$CONFIG_SITE"; then
  1526. !   ac_site_file1=$CONFIG_SITE
  1527.   elif test "x$prefix" != xNONE; then
  1528.     ac_site_file1=$prefix/share/config.site
  1529.     ac_site_file2=$prefix/etc/config.site
  1530. --- 2480,2491 ----
  1531.   ac_site_file1=NONE
  1532.   ac_site_file2=NONE
  1533.   if test -n "$CONFIG_SITE"; then
  1534. !   # We do not want a PATH search for config.site.
  1535. !   case $CONFIG_SITE in #((
  1536. !     -*)  ac_site_file1=./$CONFIG_SITE;;
  1537. !     */*) ac_site_file1=$CONFIG_SITE;;
  1538. !     *)   ac_site_file1=./$CONFIG_SITE;;
  1539. !   esac
  1540.   elif test "x$prefix" != xNONE; then
  1541.     ac_site_file1=$prefix/share/config.site
  1542.     ac_site_file2=$prefix/etc/config.site
  1543. ***************
  1544. *** 2471,2477 ****
  1545.       { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
  1546.   $as_echo "$as_me: loading site script $ac_site_file" >&6;}
  1547.       sed 's/^/| /' "$ac_site_file" >&5
  1548. !     . "$ac_site_file"
  1549.     fi
  1550.   done
  1551.   
  1552. --- 2500,2510 ----
  1553.       { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
  1554.   $as_echo "$as_me: loading site script $ac_site_file" >&6;}
  1555.       sed 's/^/| /' "$ac_site_file" >&5
  1556. !     . "$ac_site_file" \
  1557. !       || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  1558. ! $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  1559. ! as_fn_error $? "failed to load site script $ac_site_file
  1560. ! See \`config.log' for more details" "$LINENO" 5; }
  1561.     fi
  1562.   done
  1563.   
  1564. ***************
  1565. *** 2547,2553 ****
  1566.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  1567.     { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
  1568.   $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
  1569. !   as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
  1570.   fi
  1571.   ## -------------------- ##
  1572.   ## Main body of script. ##
  1573. --- 2580,2586 ----
  1574.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  1575.     { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
  1576.   $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
  1577. !   as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
  1578.   fi
  1579.   ## -------------------- ##
  1580.   ## Main body of script. ##
  1581. ***************
  1582. *** 2569,2575 ****
  1583.   $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
  1584.   set x ${MAKE-make}
  1585.   ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
  1586. ! if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then :
  1587.     $as_echo_n "(cached) " >&6
  1588.   else
  1589.     cat >conftest.make <<\_ACEOF
  1590. --- 2602,2608 ----
  1591.   $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
  1592.   set x ${MAKE-make}
  1593.   ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
  1594. ! if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
  1595.     $as_echo_n "(cached) " >&6
  1596.   else
  1597.     cat >conftest.make <<\_ACEOF
  1598. ***************
  1599. *** 2577,2583 ****
  1600.   all:
  1601.       @echo '@@@%%%=$(MAKE)=@@@%%%'
  1602.   _ACEOF
  1603. ! # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
  1604.   case `${MAKE-make} -f conftest.make 2>/dev/null` in
  1605.     *@@@%%%=?*=@@@%%%*)
  1606.       eval ac_cv_prog_make_${ac_make}_set=yes;;
  1607. --- 2610,2616 ----
  1608.   all:
  1609.       @echo '@@@%%%=$(MAKE)=@@@%%%'
  1610.   _ACEOF
  1611. ! # GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
  1612.   case `${MAKE-make} -f conftest.make 2>/dev/null` in
  1613.     *@@@%%%=?*=@@@%%%*)
  1614.       eval ac_cv_prog_make_${ac_make}_set=yes;;
  1615. ***************
  1616. *** 2607,2613 ****
  1617.   set dummy ${ac_tool_prefix}gcc; ac_word=$2
  1618.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  1619.   $as_echo_n "checking for $ac_word... " >&6; }
  1620. ! if test "${ac_cv_prog_CC+set}" = set; then :
  1621.     $as_echo_n "(cached) " >&6
  1622.   else
  1623.     if test -n "$CC"; then
  1624. --- 2640,2646 ----
  1625.   set dummy ${ac_tool_prefix}gcc; ac_word=$2
  1626.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  1627.   $as_echo_n "checking for $ac_word... " >&6; }
  1628. ! if ${ac_cv_prog_CC+:} false; then :
  1629.     $as_echo_n "(cached) " >&6
  1630.   else
  1631.     if test -n "$CC"; then
  1632. ***************
  1633. *** 2619,2625 ****
  1634.     IFS=$as_save_IFS
  1635.     test -z "$as_dir" && as_dir=.
  1636.       for ac_exec_ext in '' $ac_executable_extensions; do
  1637. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  1638.       ac_cv_prog_CC="${ac_tool_prefix}gcc"
  1639.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  1640.       break 2
  1641. --- 2652,2658 ----
  1642.     IFS=$as_save_IFS
  1643.     test -z "$as_dir" && as_dir=.
  1644.       for ac_exec_ext in '' $ac_executable_extensions; do
  1645. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  1646.       ac_cv_prog_CC="${ac_tool_prefix}gcc"
  1647.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  1648.       break 2
  1649. ***************
  1650. *** 2647,2653 ****
  1651.   set dummy gcc; ac_word=$2
  1652.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  1653.   $as_echo_n "checking for $ac_word... " >&6; }
  1654. ! if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
  1655.     $as_echo_n "(cached) " >&6
  1656.   else
  1657.     if test -n "$ac_ct_CC"; then
  1658. --- 2680,2686 ----
  1659.   set dummy gcc; ac_word=$2
  1660.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  1661.   $as_echo_n "checking for $ac_word... " >&6; }
  1662. ! if ${ac_cv_prog_ac_ct_CC+:} false; then :
  1663.     $as_echo_n "(cached) " >&6
  1664.   else
  1665.     if test -n "$ac_ct_CC"; then
  1666. ***************
  1667. *** 2659,2665 ****
  1668.     IFS=$as_save_IFS
  1669.     test -z "$as_dir" && as_dir=.
  1670.       for ac_exec_ext in '' $ac_executable_extensions; do
  1671. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  1672.       ac_cv_prog_ac_ct_CC="gcc"
  1673.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  1674.       break 2
  1675. --- 2692,2698 ----
  1676.     IFS=$as_save_IFS
  1677.     test -z "$as_dir" && as_dir=.
  1678.       for ac_exec_ext in '' $ac_executable_extensions; do
  1679. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  1680.       ac_cv_prog_ac_ct_CC="gcc"
  1681.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  1682.       break 2
  1683. ***************
  1684. *** 2700,2706 ****
  1685.   set dummy ${ac_tool_prefix}cc; ac_word=$2
  1686.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  1687.   $as_echo_n "checking for $ac_word... " >&6; }
  1688. ! if test "${ac_cv_prog_CC+set}" = set; then :
  1689.     $as_echo_n "(cached) " >&6
  1690.   else
  1691.     if test -n "$CC"; then
  1692. --- 2733,2739 ----
  1693.   set dummy ${ac_tool_prefix}cc; ac_word=$2
  1694.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  1695.   $as_echo_n "checking for $ac_word... " >&6; }
  1696. ! if ${ac_cv_prog_CC+:} false; then :
  1697.     $as_echo_n "(cached) " >&6
  1698.   else
  1699.     if test -n "$CC"; then
  1700. ***************
  1701. *** 2712,2718 ****
  1702.     IFS=$as_save_IFS
  1703.     test -z "$as_dir" && as_dir=.
  1704.       for ac_exec_ext in '' $ac_executable_extensions; do
  1705. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  1706.       ac_cv_prog_CC="${ac_tool_prefix}cc"
  1707.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  1708.       break 2
  1709. --- 2745,2751 ----
  1710.     IFS=$as_save_IFS
  1711.     test -z "$as_dir" && as_dir=.
  1712.       for ac_exec_ext in '' $ac_executable_extensions; do
  1713. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  1714.       ac_cv_prog_CC="${ac_tool_prefix}cc"
  1715.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  1716.       break 2
  1717. ***************
  1718. *** 2740,2746 ****
  1719.   set dummy cc; ac_word=$2
  1720.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  1721.   $as_echo_n "checking for $ac_word... " >&6; }
  1722. ! if test "${ac_cv_prog_CC+set}" = set; then :
  1723.     $as_echo_n "(cached) " >&6
  1724.   else
  1725.     if test -n "$CC"; then
  1726. --- 2773,2779 ----
  1727.   set dummy cc; ac_word=$2
  1728.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  1729.   $as_echo_n "checking for $ac_word... " >&6; }
  1730. ! if ${ac_cv_prog_CC+:} false; then :
  1731.     $as_echo_n "(cached) " >&6
  1732.   else
  1733.     if test -n "$CC"; then
  1734. ***************
  1735. *** 2753,2759 ****
  1736.     IFS=$as_save_IFS
  1737.     test -z "$as_dir" && as_dir=.
  1738.       for ac_exec_ext in '' $ac_executable_extensions; do
  1739. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  1740.       if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
  1741.          ac_prog_rejected=yes
  1742.          continue
  1743. --- 2786,2792 ----
  1744.     IFS=$as_save_IFS
  1745.     test -z "$as_dir" && as_dir=.
  1746.       for ac_exec_ext in '' $ac_executable_extensions; do
  1747. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  1748.       if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
  1749.          ac_prog_rejected=yes
  1750.          continue
  1751. ***************
  1752. *** 2799,2805 ****
  1753.   set dummy $ac_tool_prefix$ac_prog; ac_word=$2
  1754.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  1755.   $as_echo_n "checking for $ac_word... " >&6; }
  1756. ! if test "${ac_cv_prog_CC+set}" = set; then :
  1757.     $as_echo_n "(cached) " >&6
  1758.   else
  1759.     if test -n "$CC"; then
  1760. --- 2832,2838 ----
  1761.   set dummy $ac_tool_prefix$ac_prog; ac_word=$2
  1762.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  1763.   $as_echo_n "checking for $ac_word... " >&6; }
  1764. ! if ${ac_cv_prog_CC+:} false; then :
  1765.     $as_echo_n "(cached) " >&6
  1766.   else
  1767.     if test -n "$CC"; then
  1768. ***************
  1769. *** 2811,2817 ****
  1770.     IFS=$as_save_IFS
  1771.     test -z "$as_dir" && as_dir=.
  1772.       for ac_exec_ext in '' $ac_executable_extensions; do
  1773. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  1774.       ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
  1775.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  1776.       break 2
  1777. --- 2844,2850 ----
  1778.     IFS=$as_save_IFS
  1779.     test -z "$as_dir" && as_dir=.
  1780.       for ac_exec_ext in '' $ac_executable_extensions; do
  1781. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  1782.       ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
  1783.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  1784.       break 2
  1785. ***************
  1786. *** 2843,2849 ****
  1787.   set dummy $ac_prog; ac_word=$2
  1788.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  1789.   $as_echo_n "checking for $ac_word... " >&6; }
  1790. ! if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
  1791.     $as_echo_n "(cached) " >&6
  1792.   else
  1793.     if test -n "$ac_ct_CC"; then
  1794. --- 2876,2882 ----
  1795.   set dummy $ac_prog; ac_word=$2
  1796.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  1797.   $as_echo_n "checking for $ac_word... " >&6; }
  1798. ! if ${ac_cv_prog_ac_ct_CC+:} false; then :
  1799.     $as_echo_n "(cached) " >&6
  1800.   else
  1801.     if test -n "$ac_ct_CC"; then
  1802. ***************
  1803. *** 2855,2861 ****
  1804.     IFS=$as_save_IFS
  1805.     test -z "$as_dir" && as_dir=.
  1806.       for ac_exec_ext in '' $ac_executable_extensions; do
  1807. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  1808.       ac_cv_prog_ac_ct_CC="$ac_prog"
  1809.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  1810.       break 2
  1811. --- 2888,2894 ----
  1812.     IFS=$as_save_IFS
  1813.     test -z "$as_dir" && as_dir=.
  1814.       for ac_exec_ext in '' $ac_executable_extensions; do
  1815. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  1816.       ac_cv_prog_ac_ct_CC="$ac_prog"
  1817.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  1818.       break 2
  1819. ***************
  1820. *** 2897,2904 ****
  1821.   
  1822.   test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  1823.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  1824. ! as_fn_error "no acceptable C compiler found in \$PATH
  1825. ! See \`config.log' for more details." "$LINENO" 5; }
  1826.   
  1827.   # Provide some information about the compiler.
  1828.   $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
  1829. --- 2930,2937 ----
  1830.   
  1831.   test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  1832.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  1833. ! as_fn_error $? "no acceptable C compiler found in \$PATH
  1834. ! See \`config.log' for more details" "$LINENO" 5; }
  1835.   
  1836.   # Provide some information about the compiler.
  1837.   $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
  1838. ***************
  1839. *** 3012,3020 ****
  1840.   
  1841.   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  1842.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  1843. ! { as_fn_set_status 77
  1844. ! as_fn_error "C compiler cannot create executables
  1845. ! See \`config.log' for more details." "$LINENO" 5; }; }
  1846.   else
  1847.     { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  1848.   $as_echo "yes" >&6; }
  1849. --- 3045,3052 ----
  1850.   
  1851.   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  1852.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  1853. ! as_fn_error 77 "C compiler cannot create executables
  1854. ! See \`config.log' for more details" "$LINENO" 5; }
  1855.   else
  1856.     { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  1857.   $as_echo "yes" >&6; }
  1858. ***************
  1859. *** 3056,3063 ****
  1860.   else
  1861.     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  1862.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  1863. ! as_fn_error "cannot compute suffix of executables: cannot compile and link
  1864. ! See \`config.log' for more details." "$LINENO" 5; }
  1865.   fi
  1866.   rm -f conftest conftest$ac_cv_exeext
  1867.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
  1868. --- 3088,3095 ----
  1869.   else
  1870.     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  1871.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  1872. ! as_fn_error $? "cannot compute suffix of executables: cannot compile and link
  1873. ! See \`config.log' for more details" "$LINENO" 5; }
  1874.   fi
  1875.   rm -f conftest conftest$ac_cv_exeext
  1876.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
  1877. ***************
  1878. *** 3114,3122 ****
  1879.       else
  1880.       { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  1881.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  1882. ! as_fn_error "cannot run C compiled programs.
  1883.   If you meant to cross compile, use \`--host'.
  1884. ! See \`config.log' for more details." "$LINENO" 5; }
  1885.       fi
  1886.     fi
  1887.   fi
  1888. --- 3146,3154 ----
  1889.       else
  1890.       { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  1891.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  1892. ! as_fn_error $? "cannot run C compiled programs.
  1893.   If you meant to cross compile, use \`--host'.
  1894. ! See \`config.log' for more details" "$LINENO" 5; }
  1895.       fi
  1896.     fi
  1897.   fi
  1898. ***************
  1899. *** 3127,3133 ****
  1900.   ac_clean_files=$ac_clean_files_save
  1901.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
  1902.   $as_echo_n "checking for suffix of object files... " >&6; }
  1903. ! if test "${ac_cv_objext+set}" = set; then :
  1904.     $as_echo_n "(cached) " >&6
  1905.   else
  1906.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1907. --- 3159,3165 ----
  1908.   ac_clean_files=$ac_clean_files_save
  1909.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
  1910.   $as_echo_n "checking for suffix of object files... " >&6; }
  1911. ! if ${ac_cv_objext+:} false; then :
  1912.     $as_echo_n "(cached) " >&6
  1913.   else
  1914.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1915. ***************
  1916. *** 3167,3174 ****
  1917.   
  1918.   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  1919.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  1920. ! as_fn_error "cannot compute suffix of object files: cannot compile
  1921. ! See \`config.log' for more details." "$LINENO" 5; }
  1922.   fi
  1923.   rm -f conftest.$ac_cv_objext conftest.$ac_ext
  1924.   fi
  1925. --- 3199,3206 ----
  1926.   
  1927.   { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  1928.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  1929. ! as_fn_error $? "cannot compute suffix of object files: cannot compile
  1930. ! See \`config.log' for more details" "$LINENO" 5; }
  1931.   fi
  1932.   rm -f conftest.$ac_cv_objext conftest.$ac_ext
  1933.   fi
  1934. ***************
  1935. *** 3178,3184 ****
  1936.   ac_objext=$OBJEXT
  1937.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
  1938.   $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
  1939. ! if test "${ac_cv_c_compiler_gnu+set}" = set; then :
  1940.     $as_echo_n "(cached) " >&6
  1941.   else
  1942.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1943. --- 3210,3216 ----
  1944.   ac_objext=$OBJEXT
  1945.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
  1946.   $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
  1947. ! if ${ac_cv_c_compiler_gnu+:} false; then :
  1948.     $as_echo_n "(cached) " >&6
  1949.   else
  1950.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1951. ***************
  1952. *** 3215,3221 ****
  1953.   ac_save_CFLAGS=$CFLAGS
  1954.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
  1955.   $as_echo_n "checking whether $CC accepts -g... " >&6; }
  1956. ! if test "${ac_cv_prog_cc_g+set}" = set; then :
  1957.     $as_echo_n "(cached) " >&6
  1958.   else
  1959.     ac_save_c_werror_flag=$ac_c_werror_flag
  1960. --- 3247,3253 ----
  1961.   ac_save_CFLAGS=$CFLAGS
  1962.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
  1963.   $as_echo_n "checking whether $CC accepts -g... " >&6; }
  1964. ! if ${ac_cv_prog_cc_g+:} false; then :
  1965.     $as_echo_n "(cached) " >&6
  1966.   else
  1967.     ac_save_c_werror_flag=$ac_c_werror_flag
  1968. ***************
  1969. *** 3293,3299 ****
  1970.   fi
  1971.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
  1972.   $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
  1973. ! if test "${ac_cv_prog_cc_c89+set}" = set; then :
  1974.     $as_echo_n "(cached) " >&6
  1975.   else
  1976.     ac_cv_prog_cc_c89=no
  1977. --- 3325,3331 ----
  1978.   fi
  1979.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
  1980.   $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
  1981. ! if ${ac_cv_prog_cc_c89+:} false; then :
  1982.     $as_echo_n "(cached) " >&6
  1983.   else
  1984.     ac_cv_prog_cc_c89=no
  1985. ***************
  1986. *** 3302,3309 ****
  1987.   /* end confdefs.h.  */
  1988.   #include <stdarg.h>
  1989.   #include <stdio.h>
  1990. ! #include <sys/types.h>
  1991. ! #include <sys/stat.h>
  1992.   /* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
  1993.   struct buf { int x; };
  1994.   FILE * (*rcsopen) (struct buf *, struct stat *, int);
  1995. --- 3334,3340 ----
  1996.   /* end confdefs.h.  */
  1997.   #include <stdarg.h>
  1998.   #include <stdio.h>
  1999. ! struct stat;
  2000.   /* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
  2001.   struct buf { int x; };
  2002.   FILE * (*rcsopen) (struct buf *, struct stat *, int);
  2003. ***************
  2004. *** 3399,3405 ****
  2005.     CPP=
  2006.   fi
  2007.   if test -z "$CPP"; then
  2008. !   if test "${ac_cv_prog_CPP+set}" = set; then :
  2009.     $as_echo_n "(cached) " >&6
  2010.   else
  2011.         # Double quotes because CPP needs to be expanded
  2012. --- 3430,3436 ----
  2013.     CPP=
  2014.   fi
  2015.   if test -z "$CPP"; then
  2016. !   if ${ac_cv_prog_CPP+:} false; then :
  2017.     $as_echo_n "(cached) " >&6
  2018.   else
  2019.         # Double quotes because CPP needs to be expanded
  2020. ***************
  2021. *** 3429,3435 ****
  2022.     # Broken: fails on valid input.
  2023.   continue
  2024.   fi
  2025. ! rm -f conftest.err conftest.$ac_ext
  2026.   
  2027.     # OK, works on sane cases.  Now check whether nonexistent headers
  2028.     # can be detected and how.
  2029. --- 3460,3466 ----
  2030.     # Broken: fails on valid input.
  2031.   continue
  2032.   fi
  2033. ! rm -f conftest.err conftest.i conftest.$ac_ext
  2034.   
  2035.     # OK, works on sane cases.  Now check whether nonexistent headers
  2036.     # can be detected and how.
  2037. ***************
  2038. *** 3445,3455 ****
  2039.   ac_preproc_ok=:
  2040.   break
  2041.   fi
  2042. ! rm -f conftest.err conftest.$ac_ext
  2043.   
  2044.   done
  2045.   # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
  2046. ! rm -f conftest.err conftest.$ac_ext
  2047.   if $ac_preproc_ok; then :
  2048.     break
  2049.   fi
  2050. --- 3476,3486 ----
  2051.   ac_preproc_ok=:
  2052.   break
  2053.   fi
  2054. ! rm -f conftest.err conftest.i conftest.$ac_ext
  2055.   
  2056.   done
  2057.   # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
  2058. ! rm -f conftest.i conftest.err conftest.$ac_ext
  2059.   if $ac_preproc_ok; then :
  2060.     break
  2061.   fi
  2062. ***************
  2063. *** 3488,3494 ****
  2064.     # Broken: fails on valid input.
  2065.   continue
  2066.   fi
  2067. ! rm -f conftest.err conftest.$ac_ext
  2068.   
  2069.     # OK, works on sane cases.  Now check whether nonexistent headers
  2070.     # can be detected and how.
  2071. --- 3519,3525 ----
  2072.     # Broken: fails on valid input.
  2073.   continue
  2074.   fi
  2075. ! rm -f conftest.err conftest.i conftest.$ac_ext
  2076.   
  2077.     # OK, works on sane cases.  Now check whether nonexistent headers
  2078.     # can be detected and how.
  2079. ***************
  2080. *** 3504,3521 ****
  2081.   ac_preproc_ok=:
  2082.   break
  2083.   fi
  2084. ! rm -f conftest.err conftest.$ac_ext
  2085.   
  2086.   done
  2087.   # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
  2088. ! rm -f conftest.err conftest.$ac_ext
  2089.   if $ac_preproc_ok; then :
  2090.   
  2091.   else
  2092.     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  2093.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  2094. ! as_fn_error "C preprocessor \"$CPP\" fails sanity check
  2095. ! See \`config.log' for more details." "$LINENO" 5; }
  2096.   fi
  2097.   
  2098.   ac_ext=c
  2099. --- 3535,3552 ----
  2100.   ac_preproc_ok=:
  2101.   break
  2102.   fi
  2103. ! rm -f conftest.err conftest.i conftest.$ac_ext
  2104.   
  2105.   done
  2106.   # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
  2107. ! rm -f conftest.i conftest.err conftest.$ac_ext
  2108.   if $ac_preproc_ok; then :
  2109.   
  2110.   else
  2111.     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  2112.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  2113. ! as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
  2114. ! See \`config.log' for more details" "$LINENO" 5; }
  2115.   fi
  2116.   
  2117.   ac_ext=c
  2118. ***************
  2119. *** 3527,3533 ****
  2120.   
  2121.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
  2122.   $as_echo_n "checking for grep that handles long lines and -e... " >&6; }
  2123. ! if test "${ac_cv_path_GREP+set}" = set; then :
  2124.     $as_echo_n "(cached) " >&6
  2125.   else
  2126.     if test -z "$GREP"; then
  2127. --- 3558,3564 ----
  2128.   
  2129.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
  2130.   $as_echo_n "checking for grep that handles long lines and -e... " >&6; }
  2131. ! if ${ac_cv_path_GREP+:} false; then :
  2132.     $as_echo_n "(cached) " >&6
  2133.   else
  2134.     if test -z "$GREP"; then
  2135. ***************
  2136. *** 3541,3547 ****
  2137.       for ac_prog in grep ggrep; do
  2138.       for ac_exec_ext in '' $ac_executable_extensions; do
  2139.         ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
  2140. !       { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
  2141.   # Check for GNU ac_path_GREP and select it if it is found.
  2142.     # Check for GNU $ac_path_GREP
  2143.   case `"$ac_path_GREP" --version 2>&1` in
  2144. --- 3572,3578 ----
  2145.       for ac_prog in grep ggrep; do
  2146.       for ac_exec_ext in '' $ac_executable_extensions; do
  2147.         ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
  2148. !       as_fn_executable_p "$ac_path_GREP" || continue
  2149.   # Check for GNU ac_path_GREP and select it if it is found.
  2150.     # Check for GNU $ac_path_GREP
  2151.   case `"$ac_path_GREP" --version 2>&1` in
  2152. ***************
  2153. *** 3576,3582 ****
  2154.     done
  2155.   IFS=$as_save_IFS
  2156.     if test -z "$ac_cv_path_GREP"; then
  2157. !     as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
  2158.     fi
  2159.   else
  2160.     ac_cv_path_GREP=$GREP
  2161. --- 3607,3613 ----
  2162.     done
  2163.   IFS=$as_save_IFS
  2164.     if test -z "$ac_cv_path_GREP"; then
  2165. !     as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
  2166.     fi
  2167.   else
  2168.     ac_cv_path_GREP=$GREP
  2169. ***************
  2170. *** 3590,3596 ****
  2171.   
  2172.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
  2173.   $as_echo_n "checking for egrep... " >&6; }
  2174. ! if test "${ac_cv_path_EGREP+set}" = set; then :
  2175.     $as_echo_n "(cached) " >&6
  2176.   else
  2177.     if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
  2178. --- 3621,3627 ----
  2179.   
  2180.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
  2181.   $as_echo_n "checking for egrep... " >&6; }
  2182. ! if ${ac_cv_path_EGREP+:} false; then :
  2183.     $as_echo_n "(cached) " >&6
  2184.   else
  2185.     if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
  2186. ***************
  2187. *** 3607,3613 ****
  2188.       for ac_prog in egrep; do
  2189.       for ac_exec_ext in '' $ac_executable_extensions; do
  2190.         ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
  2191. !       { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
  2192.   # Check for GNU ac_path_EGREP and select it if it is found.
  2193.     # Check for GNU $ac_path_EGREP
  2194.   case `"$ac_path_EGREP" --version 2>&1` in
  2195. --- 3638,3644 ----
  2196.       for ac_prog in egrep; do
  2197.       for ac_exec_ext in '' $ac_executable_extensions; do
  2198.         ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
  2199. !       as_fn_executable_p "$ac_path_EGREP" || continue
  2200.   # Check for GNU ac_path_EGREP and select it if it is found.
  2201.     # Check for GNU $ac_path_EGREP
  2202.   case `"$ac_path_EGREP" --version 2>&1` in
  2203. ***************
  2204. *** 3642,3648 ****
  2205.     done
  2206.   IFS=$as_save_IFS
  2207.     if test -z "$ac_cv_path_EGREP"; then
  2208. !     as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
  2209.     fi
  2210.   else
  2211.     ac_cv_path_EGREP=$EGREP
  2212. --- 3673,3679 ----
  2213.     done
  2214.   IFS=$as_save_IFS
  2215.     if test -z "$ac_cv_path_EGREP"; then
  2216. !     as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
  2217.     fi
  2218.   else
  2219.     ac_cv_path_EGREP=$EGREP
  2220. ***************
  2221. *** 3666,3672 ****
  2222.   rm -f conftest*
  2223.    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing strerror" >&5
  2224.   $as_echo_n "checking for library containing strerror... " >&6; }
  2225. ! if test "${ac_cv_search_strerror+set}" = set; then :
  2226.     $as_echo_n "(cached) " >&6
  2227.   else
  2228.     ac_func_search_save_LIBS=$LIBS
  2229. --- 3697,3703 ----
  2230.   rm -f conftest*
  2231.    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing strerror" >&5
  2232.   $as_echo_n "checking for library containing strerror... " >&6; }
  2233. ! if ${ac_cv_search_strerror+:} false; then :
  2234.     $as_echo_n "(cached) " >&6
  2235.   else
  2236.     ac_func_search_save_LIBS=$LIBS
  2237. ***************
  2238. *** 3700,3710 ****
  2239.   fi
  2240.   rm -f core conftest.err conftest.$ac_objext \
  2241.       conftest$ac_exeext
  2242. !   if test "${ac_cv_search_strerror+set}" = set; then :
  2243.     break
  2244.   fi
  2245.   done
  2246. ! if test "${ac_cv_search_strerror+set}" = set; then :
  2247.   
  2248.   else
  2249.     ac_cv_search_strerror=no
  2250. --- 3731,3741 ----
  2251.   fi
  2252.   rm -f core conftest.err conftest.$ac_objext \
  2253.       conftest$ac_exeext
  2254. !   if ${ac_cv_search_strerror+:} false; then :
  2255.     break
  2256.   fi
  2257.   done
  2258. ! if ${ac_cv_search_strerror+:} false; then :
  2259.   
  2260.   else
  2261.     ac_cv_search_strerror=no
  2262. ***************
  2263. *** 3725,3731 ****
  2264.   set dummy $ac_prog; ac_word=$2
  2265.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2266.   $as_echo_n "checking for $ac_word... " >&6; }
  2267. ! if test "${ac_cv_prog_AWK+set}" = set; then :
  2268.     $as_echo_n "(cached) " >&6
  2269.   else
  2270.     if test -n "$AWK"; then
  2271. --- 3756,3762 ----
  2272.   set dummy $ac_prog; ac_word=$2
  2273.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2274.   $as_echo_n "checking for $ac_word... " >&6; }
  2275. ! if ${ac_cv_prog_AWK+:} false; then :
  2276.     $as_echo_n "(cached) " >&6
  2277.   else
  2278.     if test -n "$AWK"; then
  2279. ***************
  2280. *** 3737,3743 ****
  2281.     IFS=$as_save_IFS
  2282.     test -z "$as_dir" && as_dir=.
  2283.       for ac_exec_ext in '' $ac_executable_extensions; do
  2284. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2285.       ac_cv_prog_AWK="$ac_prog"
  2286.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2287.       break 2
  2288. --- 3768,3774 ----
  2289.     IFS=$as_save_IFS
  2290.     test -z "$as_dir" && as_dir=.
  2291.       for ac_exec_ext in '' $ac_executable_extensions; do
  2292. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  2293.       ac_cv_prog_AWK="$ac_prog"
  2294.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2295.       break 2
  2296. ***************
  2297. *** 3765,3771 ****
  2298.   set dummy strip; ac_word=$2
  2299.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2300.   $as_echo_n "checking for $ac_word... " >&6; }
  2301. ! if test "${ac_cv_prog_STRIP+set}" = set; then :
  2302.     $as_echo_n "(cached) " >&6
  2303.   else
  2304.     if test -n "$STRIP"; then
  2305. --- 3796,3802 ----
  2306.   set dummy strip; ac_word=$2
  2307.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2308.   $as_echo_n "checking for $ac_word... " >&6; }
  2309. ! if ${ac_cv_prog_STRIP+:} false; then :
  2310.     $as_echo_n "(cached) " >&6
  2311.   else
  2312.     if test -n "$STRIP"; then
  2313. ***************
  2314. *** 3777,3783 ****
  2315.     IFS=$as_save_IFS
  2316.     test -z "$as_dir" && as_dir=.
  2317.       for ac_exec_ext in '' $ac_executable_extensions; do
  2318. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2319.       ac_cv_prog_STRIP="strip"
  2320.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2321.       break 2
  2322. --- 3808,3814 ----
  2323.     IFS=$as_save_IFS
  2324.     test -z "$as_dir" && as_dir=.
  2325.       for ac_exec_ext in '' $ac_executable_extensions; do
  2326. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  2327.       ac_cv_prog_STRIP="strip"
  2328.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2329.       break 2
  2330. ***************
  2331. *** 3804,3810 ****
  2332.   
  2333.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
  2334.   $as_echo_n "checking for ANSI C header files... " >&6; }
  2335. ! if test "${ac_cv_header_stdc+set}" = set; then :
  2336.     $as_echo_n "(cached) " >&6
  2337.   else
  2338.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2339. --- 3835,3841 ----
  2340.   
  2341.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
  2342.   $as_echo_n "checking for ANSI C header files... " >&6; }
  2343. ! if ${ac_cv_header_stdc+:} false; then :
  2344.     $as_echo_n "(cached) " >&6
  2345.   else
  2346.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2347. ***************
  2348. *** 3916,3922 ****
  2349.   
  2350.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5
  2351.   $as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; }
  2352. ! if test "${ac_cv_header_sys_wait_h+set}" = set; then :
  2353.     $as_echo_n "(cached) " >&6
  2354.   else
  2355.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2356. --- 3947,3953 ----
  2357.   
  2358.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5
  2359.   $as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; }
  2360. ! if ${ac_cv_header_sys_wait_h+:} false; then :
  2361.     $as_echo_n "(cached) " >&6
  2362.   else
  2363.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2364. ***************
  2365. *** 4107,4113 ****
  2366.   set dummy xcode-select; ac_word=$2
  2367.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2368.   $as_echo_n "checking for $ac_word... " >&6; }
  2369. ! if test "${ac_cv_path_XCODE_SELECT+set}" = set; then :
  2370.     $as_echo_n "(cached) " >&6
  2371.   else
  2372.     case $XCODE_SELECT in
  2373. --- 4138,4144 ----
  2374.   set dummy xcode-select; ac_word=$2
  2375.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2376.   $as_echo_n "checking for $ac_word... " >&6; }
  2377. ! if ${ac_cv_path_XCODE_SELECT+:} false; then :
  2378.     $as_echo_n "(cached) " >&6
  2379.   else
  2380.     case $XCODE_SELECT in
  2381. ***************
  2382. *** 4121,4127 ****
  2383.     IFS=$as_save_IFS
  2384.     test -z "$as_dir" && as_dir=.
  2385.       for ac_exec_ext in '' $ac_executable_extensions; do
  2386. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2387.       ac_cv_path_XCODE_SELECT="$as_dir/$ac_word$ac_exec_ext"
  2388.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2389.       break 2
  2390. --- 4152,4158 ----
  2391.     IFS=$as_save_IFS
  2392.     test -z "$as_dir" && as_dir=.
  2393.       for ac_exec_ext in '' $ac_executable_extensions; do
  2394. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  2395.       ac_cv_path_XCODE_SELECT="$as_dir/$ac_word$ac_exec_ext"
  2396.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2397.       break 2
  2398. ***************
  2399. *** 4230,4237 ****
  2400.     as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  2401.   ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
  2402.   "
  2403. ! eval as_val=\$$as_ac_Header
  2404. !    if test "x$as_val" = x""yes; then :
  2405.     cat >>confdefs.h <<_ACEOF
  2406.   #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  2407.   _ACEOF
  2408. --- 4261,4267 ----
  2409.     as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  2410.   ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
  2411.   "
  2412. ! if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
  2413.     cat >>confdefs.h <<_ACEOF
  2414.   #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  2415.   _ACEOF
  2416. ***************
  2417. *** 4242,4248 ****
  2418.   
  2419.   
  2420.   ac_fn_c_check_header_mongrel "$LINENO" "Carbon/Carbon.h" "ac_cv_header_Carbon_Carbon_h" "$ac_includes_default"
  2421. ! if test "x$ac_cv_header_Carbon_Carbon_h" = x""yes; then :
  2422.     CARBON=yes
  2423.   fi
  2424.   
  2425. --- 4272,4278 ----
  2426.   
  2427.   
  2428.   ac_fn_c_check_header_mongrel "$LINENO" "Carbon/Carbon.h" "ac_cv_header_Carbon_Carbon_h" "$ac_includes_default"
  2429. ! if test "x$ac_cv_header_Carbon_Carbon_h" = xyes; then :
  2430.     CARBON=yes
  2431.   fi
  2432.   
  2433. ***************
  2434. *** 4266,4272 ****
  2435.   for ac_header in AvailabilityMacros.h
  2436.   do :
  2437.     ac_fn_c_check_header_mongrel "$LINENO" "AvailabilityMacros.h" "ac_cv_header_AvailabilityMacros_h" "$ac_includes_default"
  2438. ! if test "x$ac_cv_header_AvailabilityMacros_h" = x""yes; then :
  2439.     cat >>confdefs.h <<_ACEOF
  2440.   #define HAVE_AVAILABILITYMACROS_H 1
  2441.   _ACEOF
  2442. --- 4296,4302 ----
  2443.   for ac_header in AvailabilityMacros.h
  2444.   do :
  2445.     ac_fn_c_check_header_mongrel "$LINENO" "AvailabilityMacros.h" "ac_cv_header_AvailabilityMacros_h" "$ac_includes_default"
  2446. ! if test "x$ac_cv_header_AvailabilityMacros_h" = xyes; then :
  2447.     cat >>confdefs.h <<_ACEOF
  2448.   #define HAVE_AVAILABILITYMACROS_H 1
  2449.   _ACEOF
  2450. ***************
  2451. *** 4296,4302 ****
  2452.         have_local_include=yes
  2453.         have_local_lib=yes
  2454.         ;;
  2455. !     *) as_fn_error "must pass path argument to --with-local-dir" "$LINENO" 5 ;;
  2456.       esac
  2457.       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $local_dir" >&5
  2458.   $as_echo "$local_dir" >&6; }
  2459. --- 4326,4332 ----
  2460.         have_local_include=yes
  2461.         have_local_lib=yes
  2462.         ;;
  2463. !     *) as_fn_error $? "must pass path argument to --with-local-dir" "$LINENO" 5 ;;
  2464.       esac
  2465.       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $local_dir" >&5
  2466.   $as_echo "$local_dir" >&6; }
  2467. ***************
  2468. *** 4505,4511 ****
  2469.   $as_echo "no" >&6; }
  2470.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for is_selinux_enabled in -lselinux" >&5
  2471.   $as_echo_n "checking for is_selinux_enabled in -lselinux... " >&6; }
  2472. ! if test "${ac_cv_lib_selinux_is_selinux_enabled+set}" = set; then :
  2473.     $as_echo_n "(cached) " >&6
  2474.   else
  2475.     ac_check_lib_save_LIBS=$LIBS
  2476. --- 4535,4541 ----
  2477.   $as_echo "no" >&6; }
  2478.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for is_selinux_enabled in -lselinux" >&5
  2479.   $as_echo_n "checking for is_selinux_enabled in -lselinux... " >&6; }
  2480. ! if ${ac_cv_lib_selinux_is_selinux_enabled+:} false; then :
  2481.     $as_echo_n "(cached) " >&6
  2482.   else
  2483.     ac_check_lib_save_LIBS=$LIBS
  2484. ***************
  2485. *** 4539,4545 ****
  2486.   fi
  2487.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_selinux_is_selinux_enabled" >&5
  2488.   $as_echo "$ac_cv_lib_selinux_is_selinux_enabled" >&6; }
  2489. ! if test "x$ac_cv_lib_selinux_is_selinux_enabled" = x""yes; then :
  2490.     LIBS="$LIBS -lselinux"
  2491.          $as_echo "#define HAVE_SELINUX 1" >>confdefs.h
  2492.   
  2493. --- 4569,4575 ----
  2494.   fi
  2495.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_selinux_is_selinux_enabled" >&5
  2496.   $as_echo "$ac_cv_lib_selinux_is_selinux_enabled" >&6; }
  2497. ! if test "x$ac_cv_lib_selinux_is_selinux_enabled" = xyes; then :
  2498.     LIBS="$LIBS -lselinux"
  2499.          $as_echo "#define HAVE_SELINUX 1" >>confdefs.h
  2500.   
  2501. ***************
  2502. *** 4701,4707 ****
  2503.   set dummy luajit; ac_word=$2
  2504.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2505.   $as_echo_n "checking for $ac_word... " >&6; }
  2506. ! if test "${ac_cv_path_vi_cv_path_luajit+set}" = set; then :
  2507.     $as_echo_n "(cached) " >&6
  2508.   else
  2509.     case $vi_cv_path_luajit in
  2510. --- 4731,4737 ----
  2511.   set dummy luajit; ac_word=$2
  2512.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2513.   $as_echo_n "checking for $ac_word... " >&6; }
  2514. ! if ${ac_cv_path_vi_cv_path_luajit+:} false; then :
  2515.     $as_echo_n "(cached) " >&6
  2516.   else
  2517.     case $vi_cv_path_luajit in
  2518. ***************
  2519. *** 4715,4721 ****
  2520.     IFS=$as_save_IFS
  2521.     test -z "$as_dir" && as_dir=.
  2522.       for ac_exec_ext in '' $ac_executable_extensions; do
  2523. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2524.       ac_cv_path_vi_cv_path_luajit="$as_dir/$ac_word$ac_exec_ext"
  2525.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2526.       break 2
  2527. --- 4745,4751 ----
  2528.     IFS=$as_save_IFS
  2529.     test -z "$as_dir" && as_dir=.
  2530.       for ac_exec_ext in '' $ac_executable_extensions; do
  2531. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  2532.       ac_cv_path_vi_cv_path_luajit="$as_dir/$ac_word$ac_exec_ext"
  2533.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2534.       break 2
  2535. ***************
  2536. *** 4740,4746 ****
  2537.         if test "X$vi_cv_path_luajit" != "X"; then
  2538.           { $as_echo "$as_me:${as_lineno-$LINENO}: checking LuaJIT version" >&5
  2539.   $as_echo_n "checking LuaJIT version... " >&6; }
  2540. ! if test "${vi_cv_version_luajit+set}" = set; then :
  2541.     $as_echo_n "(cached) " >&6
  2542.   else
  2543.      vi_cv_version_luajit=`${vi_cv_path_luajit} -v 2>&1 | sed 's/LuaJIT \([0-9.]*\)\.[0-9]\(-[a-z0-9]*\)* .*/\1/'`
  2544. --- 4770,4776 ----
  2545.         if test "X$vi_cv_path_luajit" != "X"; then
  2546.           { $as_echo "$as_me:${as_lineno-$LINENO}: checking LuaJIT version" >&5
  2547.   $as_echo_n "checking LuaJIT version... " >&6; }
  2548. ! if ${vi_cv_version_luajit+:} false; then :
  2549.     $as_echo_n "(cached) " >&6
  2550.   else
  2551.      vi_cv_version_luajit=`${vi_cv_path_luajit} -v 2>&1 | sed 's/LuaJIT \([0-9.]*\)\.[0-9]\(-[a-z0-9]*\)* .*/\1/'`
  2552. ***************
  2553. *** 4749,4755 ****
  2554.   $as_echo "$vi_cv_version_luajit" >&6; }
  2555.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking Lua version of LuaJIT" >&5
  2556.   $as_echo_n "checking Lua version of LuaJIT... " >&6; }
  2557. ! if test "${vi_cv_version_lua_luajit+set}" = set; then :
  2558.     $as_echo_n "(cached) " >&6
  2559.   else
  2560.      vi_cv_version_lua_luajit=`${vi_cv_path_luajit} -e "print(_VERSION)" | sed 's/.* //'`
  2561. --- 4779,4785 ----
  2562.   $as_echo "$vi_cv_version_luajit" >&6; }
  2563.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking Lua version of LuaJIT" >&5
  2564.   $as_echo_n "checking Lua version of LuaJIT... " >&6; }
  2565. ! if ${vi_cv_version_lua_luajit+:} false; then :
  2566.     $as_echo_n "(cached) " >&6
  2567.   else
  2568.      vi_cv_version_lua_luajit=`${vi_cv_path_luajit} -e "print(_VERSION)" | sed 's/.* //'`
  2569. ***************
  2570. *** 4764,4770 ****
  2571.   set dummy lua; ac_word=$2
  2572.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2573.   $as_echo_n "checking for $ac_word... " >&6; }
  2574. ! if test "${ac_cv_path_vi_cv_path_plain_lua+set}" = set; then :
  2575.     $as_echo_n "(cached) " >&6
  2576.   else
  2577.     case $vi_cv_path_plain_lua in
  2578. --- 4794,4800 ----
  2579.   set dummy lua; ac_word=$2
  2580.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2581.   $as_echo_n "checking for $ac_word... " >&6; }
  2582. ! if ${ac_cv_path_vi_cv_path_plain_lua+:} false; then :
  2583.     $as_echo_n "(cached) " >&6
  2584.   else
  2585.     case $vi_cv_path_plain_lua in
  2586. ***************
  2587. *** 4778,4784 ****
  2588.     IFS=$as_save_IFS
  2589.     test -z "$as_dir" && as_dir=.
  2590.       for ac_exec_ext in '' $ac_executable_extensions; do
  2591. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2592.       ac_cv_path_vi_cv_path_plain_lua="$as_dir/$ac_word$ac_exec_ext"
  2593.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2594.       break 2
  2595. --- 4808,4814 ----
  2596.     IFS=$as_save_IFS
  2597.     test -z "$as_dir" && as_dir=.
  2598.       for ac_exec_ext in '' $ac_executable_extensions; do
  2599. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  2600.       ac_cv_path_vi_cv_path_plain_lua="$as_dir/$ac_word$ac_exec_ext"
  2601.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2602.       break 2
  2603. ***************
  2604. *** 4803,4809 ****
  2605.         if test "X$vi_cv_path_plain_lua" != "X"; then
  2606.           { $as_echo "$as_me:${as_lineno-$LINENO}: checking Lua version" >&5
  2607.   $as_echo_n "checking Lua version... " >&6; }
  2608. ! if test "${vi_cv_version_plain_lua+set}" = set; then :
  2609.     $as_echo_n "(cached) " >&6
  2610.   else
  2611.      vi_cv_version_plain_lua=`${vi_cv_path_plain_lua} -e "print(_VERSION)" | sed 's/.* //'`
  2612. --- 4833,4839 ----
  2613.         if test "X$vi_cv_path_plain_lua" != "X"; then
  2614.           { $as_echo "$as_me:${as_lineno-$LINENO}: checking Lua version" >&5
  2615.   $as_echo_n "checking Lua version... " >&6; }
  2616. ! if ${vi_cv_version_plain_lua+:} false; then :
  2617.     $as_echo_n "(cached) " >&6
  2618.   else
  2619.      vi_cv_version_plain_lua=`${vi_cv_path_plain_lua} -e "print(_VERSION)" | sed 's/.* //'`
  2620. ***************
  2621. *** 4963,4969 ****
  2622.       fi
  2623.     fi
  2624.     if test "$fail_if_missing" = "yes" -a "$lua_ok" != "yes"; then
  2625. !     as_fn_error "could not configure lua" "$LINENO" 5
  2626.     fi
  2627.   
  2628.   
  2629. --- 4993,4999 ----
  2630.       fi
  2631.     fi
  2632.     if test "$fail_if_missing" = "yes" -a "$lua_ok" != "yes"; then
  2633. !     as_fn_error $? "could not configure lua" "$LINENO" 5
  2634.     fi
  2635.   
  2636.   
  2637. ***************
  2638. *** 5017,5023 ****
  2639.   set dummy mzscheme; ac_word=$2
  2640.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2641.   $as_echo_n "checking for $ac_word... " >&6; }
  2642. ! if test "${ac_cv_path_vi_cv_path_mzscheme+set}" = set; then :
  2643.     $as_echo_n "(cached) " >&6
  2644.   else
  2645.     case $vi_cv_path_mzscheme in
  2646. --- 5047,5053 ----
  2647.   set dummy mzscheme; ac_word=$2
  2648.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2649.   $as_echo_n "checking for $ac_word... " >&6; }
  2650. ! if ${ac_cv_path_vi_cv_path_mzscheme+:} false; then :
  2651.     $as_echo_n "(cached) " >&6
  2652.   else
  2653.     case $vi_cv_path_mzscheme in
  2654. ***************
  2655. *** 5031,5037 ****
  2656.     IFS=$as_save_IFS
  2657.     test -z "$as_dir" && as_dir=.
  2658.       for ac_exec_ext in '' $ac_executable_extensions; do
  2659. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2660.       ac_cv_path_vi_cv_path_mzscheme="$as_dir/$ac_word$ac_exec_ext"
  2661.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2662.       break 2
  2663. --- 5061,5067 ----
  2664.     IFS=$as_save_IFS
  2665.     test -z "$as_dir" && as_dir=.
  2666.       for ac_exec_ext in '' $ac_executable_extensions; do
  2667. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  2668.       ac_cv_path_vi_cv_path_mzscheme="$as_dir/$ac_word$ac_exec_ext"
  2669.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2670.       break 2
  2671. ***************
  2672. *** 5064,5070 ****
  2673.       if test "X$vi_cv_path_mzscheme" != "X"; then
  2674.                   { $as_echo "$as_me:${as_lineno-$LINENO}: checking MzScheme install prefix" >&5
  2675.   $as_echo_n "checking MzScheme install prefix... " >&6; }
  2676. ! if test "${vi_cv_path_mzscheme_pfx+set}" = set; then :
  2677.     $as_echo_n "(cached) " >&6
  2678.   else
  2679.                     echo "(display (simplify-path        \
  2680. --- 5094,5100 ----
  2681.       if test "X$vi_cv_path_mzscheme" != "X"; then
  2682.                   { $as_echo "$as_me:${as_lineno-$LINENO}: checking MzScheme install prefix" >&5
  2683.   $as_echo_n "checking MzScheme install prefix... " >&6; }
  2684. ! if ${vi_cv_path_mzscheme_pfx+:} false; then :
  2685.     $as_echo_n "(cached) " >&6
  2686.   else
  2687.                     echo "(display (simplify-path        \
  2688. ***************
  2689. *** 5226,5232 ****
  2690.   
  2691.           { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ffi_type_void in -lffi" >&5
  2692.   $as_echo_n "checking for ffi_type_void in -lffi... " >&6; }
  2693. ! if test "${ac_cv_lib_ffi_ffi_type_void+set}" = set; then :
  2694.     $as_echo_n "(cached) " >&6
  2695.   else
  2696.     ac_check_lib_save_LIBS=$LIBS
  2697. --- 5256,5262 ----
  2698.   
  2699.           { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ffi_type_void in -lffi" >&5
  2700.   $as_echo_n "checking for ffi_type_void in -lffi... " >&6; }
  2701. ! if ${ac_cv_lib_ffi_ffi_type_void+:} false; then :
  2702.     $as_echo_n "(cached) " >&6
  2703.   else
  2704.     ac_check_lib_save_LIBS=$LIBS
  2705. ***************
  2706. *** 5260,5266 ****
  2707.   fi
  2708.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ffi_ffi_type_void" >&5
  2709.   $as_echo "$ac_cv_lib_ffi_ffi_type_void" >&6; }
  2710. ! if test "x$ac_cv_lib_ffi_ffi_type_void" = x""yes; then :
  2711.     MZSCHEME_LIBS="$MZSCHEME_LIBS -lffi"
  2712.   fi
  2713.   
  2714. --- 5290,5296 ----
  2715.   fi
  2716.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ffi_ffi_type_void" >&5
  2717.   $as_echo "$ac_cv_lib_ffi_ffi_type_void" >&6; }
  2718. ! if test "x$ac_cv_lib_ffi_ffi_type_void" = xyes; then :
  2719.     MZSCHEME_LIBS="$MZSCHEME_LIBS -lffi"
  2720.   fi
  2721.   
  2722. ***************
  2723. *** 5336,5342 ****
  2724.   set dummy perl; ac_word=$2
  2725.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2726.   $as_echo_n "checking for $ac_word... " >&6; }
  2727. ! if test "${ac_cv_path_vi_cv_path_perl+set}" = set; then :
  2728.     $as_echo_n "(cached) " >&6
  2729.   else
  2730.     case $vi_cv_path_perl in
  2731. --- 5366,5372 ----
  2732.   set dummy perl; ac_word=$2
  2733.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2734.   $as_echo_n "checking for $ac_word... " >&6; }
  2735. ! if ${ac_cv_path_vi_cv_path_perl+:} false; then :
  2736.     $as_echo_n "(cached) " >&6
  2737.   else
  2738.     case $vi_cv_path_perl in
  2739. ***************
  2740. *** 5350,5356 ****
  2741.     IFS=$as_save_IFS
  2742.     test -z "$as_dir" && as_dir=.
  2743.       for ac_exec_ext in '' $ac_executable_extensions; do
  2744. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2745.       ac_cv_path_vi_cv_path_perl="$as_dir/$ac_word$ac_exec_ext"
  2746.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2747.       break 2
  2748. --- 5380,5386 ----
  2749.     IFS=$as_save_IFS
  2750.     test -z "$as_dir" && as_dir=.
  2751.       for ac_exec_ext in '' $ac_executable_extensions; do
  2752. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  2753.       ac_cv_path_vi_cv_path_perl="$as_dir/$ac_word$ac_exec_ext"
  2754.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2755.       break 2
  2756. ***************
  2757. *** 5498,5504 ****
  2758.     fi
  2759.   
  2760.     if test "$fail_if_missing" = "yes" -a "$perl_ok" != "yes"; then
  2761. !     as_fn_error "could not configure perl" "$LINENO" 5
  2762.     fi
  2763.   fi
  2764.   
  2765. --- 5528,5534 ----
  2766.     fi
  2767.   
  2768.     if test "$fail_if_missing" = "yes" -a "$perl_ok" != "yes"; then
  2769. !     as_fn_error $? "could not configure perl" "$LINENO" 5
  2770.     fi
  2771.   fi
  2772.   
  2773. ***************
  2774. *** 5526,5532 ****
  2775.   set dummy $ac_prog; ac_word=$2
  2776.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2777.   $as_echo_n "checking for $ac_word... " >&6; }
  2778. ! if test "${ac_cv_path_vi_cv_path_python+set}" = set; then :
  2779.     $as_echo_n "(cached) " >&6
  2780.   else
  2781.     case $vi_cv_path_python in
  2782. --- 5556,5562 ----
  2783.   set dummy $ac_prog; ac_word=$2
  2784.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2785.   $as_echo_n "checking for $ac_word... " >&6; }
  2786. ! if ${ac_cv_path_vi_cv_path_python+:} false; then :
  2787.     $as_echo_n "(cached) " >&6
  2788.   else
  2789.     case $vi_cv_path_python in
  2790. ***************
  2791. *** 5540,5546 ****
  2792.     IFS=$as_save_IFS
  2793.     test -z "$as_dir" && as_dir=.
  2794.       for ac_exec_ext in '' $ac_executable_extensions; do
  2795. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2796.       ac_cv_path_vi_cv_path_python="$as_dir/$ac_word$ac_exec_ext"
  2797.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2798.       break 2
  2799. --- 5570,5576 ----
  2800.     IFS=$as_save_IFS
  2801.     test -z "$as_dir" && as_dir=.
  2802.       for ac_exec_ext in '' $ac_executable_extensions; do
  2803. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  2804.       ac_cv_path_vi_cv_path_python="$as_dir/$ac_word$ac_exec_ext"
  2805.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2806.       break 2
  2807. ***************
  2808. *** 5569,5575 ****
  2809.   
  2810.           { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python version" >&5
  2811.   $as_echo_n "checking Python version... " >&6; }
  2812. ! if test "${vi_cv_var_python_version+set}" = set; then :
  2813.     $as_echo_n "(cached) " >&6
  2814.   else
  2815.     vi_cv_var_python_version=`
  2816. --- 5599,5605 ----
  2817.   
  2818.           { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python version" >&5
  2819.   $as_echo_n "checking Python version... " >&6; }
  2820. ! if ${vi_cv_var_python_version+:} false; then :
  2821.     $as_echo_n "(cached) " >&6
  2822.   else
  2823.     vi_cv_var_python_version=`
  2824. ***************
  2825. *** 5589,5595 ****
  2826.   
  2827.               { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python's install prefix" >&5
  2828.   $as_echo_n "checking Python's install prefix... " >&6; }
  2829. ! if test "${vi_cv_path_python_pfx+set}" = set; then :
  2830.     $as_echo_n "(cached) " >&6
  2831.   else
  2832.      vi_cv_path_python_pfx=`
  2833. --- 5619,5625 ----
  2834.   
  2835.               { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python's install prefix" >&5
  2836.   $as_echo_n "checking Python's install prefix... " >&6; }
  2837. ! if ${vi_cv_path_python_pfx+:} false; then :
  2838.     $as_echo_n "(cached) " >&6
  2839.   else
  2840.      vi_cv_path_python_pfx=`
  2841. ***************
  2842. *** 5601,5607 ****
  2843.   
  2844.               { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python's execution prefix" >&5
  2845.   $as_echo_n "checking Python's execution prefix... " >&6; }
  2846. ! if test "${vi_cv_path_python_epfx+set}" = set; then :
  2847.     $as_echo_n "(cached) " >&6
  2848.   else
  2849.      vi_cv_path_python_epfx=`
  2850. --- 5631,5637 ----
  2851.   
  2852.               { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python's execution prefix" >&5
  2853.   $as_echo_n "checking Python's execution prefix... " >&6; }
  2854. ! if ${vi_cv_path_python_epfx+:} false; then :
  2855.     $as_echo_n "(cached) " >&6
  2856.   else
  2857.      vi_cv_path_python_epfx=`
  2858. ***************
  2859. *** 5612,5618 ****
  2860.   $as_echo "$vi_cv_path_python_epfx" >&6; }
  2861.   
  2862.   
  2863. !       if test "${vi_cv_path_pythonpath+set}" = set; then :
  2864.     $as_echo_n "(cached) " >&6
  2865.   else
  2866.      vi_cv_path_pythonpath=`
  2867. --- 5642,5648 ----
  2868.   $as_echo "$vi_cv_path_python_epfx" >&6; }
  2869.   
  2870.   
  2871. !       if ${vi_cv_path_pythonpath+:} false; then :
  2872.     $as_echo_n "(cached) " >&6
  2873.   else
  2874.      vi_cv_path_pythonpath=`
  2875. ***************
  2876. *** 5632,5638 ****
  2877.   
  2878.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python's configuration directory" >&5
  2879.   $as_echo_n "checking Python's configuration directory... " >&6; }
  2880. ! if test "${vi_cv_path_python_conf+set}" = set; then :
  2881.     $as_echo_n "(cached) " >&6
  2882.   else
  2883.   
  2884. --- 5662,5668 ----
  2885.   
  2886.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python's configuration directory" >&5
  2887.   $as_echo_n "checking Python's configuration directory... " >&6; }
  2888. ! if ${vi_cv_path_python_conf+:} false; then :
  2889.     $as_echo_n "(cached) " >&6
  2890.   else
  2891.   
  2892. ***************
  2893. *** 5662,5668 ****
  2894.   $as_echo "can't find it!" >&6; }
  2895.         else
  2896.   
  2897. !             if test "${vi_cv_path_python_plibs+set}" = set; then :
  2898.     $as_echo_n "(cached) " >&6
  2899.   else
  2900.   
  2901. --- 5692,5698 ----
  2902.   $as_echo "can't find it!" >&6; }
  2903.         else
  2904.   
  2905. !             if ${vi_cv_path_python_plibs+:} false; then :
  2906.     $as_echo_n "(cached) " >&6
  2907.   else
  2908.   
  2909. ***************
  2910. *** 5803,5809 ****
  2911.     fi
  2912.   
  2913.     if test "$fail_if_missing" = "yes" -a "$python_ok" != "yes"; then
  2914. !     as_fn_error "could not configure python" "$LINENO" 5
  2915.     fi
  2916.   fi
  2917.   
  2918. --- 5833,5839 ----
  2919.     fi
  2920.   
  2921.     if test "$fail_if_missing" = "yes" -a "$python_ok" != "yes"; then
  2922. !     as_fn_error $? "could not configure python" "$LINENO" 5
  2923.     fi
  2924.   fi
  2925.   
  2926. ***************
  2927. *** 5833,5839 ****
  2928.   set dummy $ac_prog; ac_word=$2
  2929.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2930.   $as_echo_n "checking for $ac_word... " >&6; }
  2931. ! if test "${ac_cv_path_vi_cv_path_python3+set}" = set; then :
  2932.     $as_echo_n "(cached) " >&6
  2933.   else
  2934.     case $vi_cv_path_python3 in
  2935. --- 5863,5869 ----
  2936.   set dummy $ac_prog; ac_word=$2
  2937.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2938.   $as_echo_n "checking for $ac_word... " >&6; }
  2939. ! if ${ac_cv_path_vi_cv_path_python3+:} false; then :
  2940.     $as_echo_n "(cached) " >&6
  2941.   else
  2942.     case $vi_cv_path_python3 in
  2943. ***************
  2944. *** 5847,5853 ****
  2945.     IFS=$as_save_IFS
  2946.     test -z "$as_dir" && as_dir=.
  2947.       for ac_exec_ext in '' $ac_executable_extensions; do
  2948. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2949.       ac_cv_path_vi_cv_path_python3="$as_dir/$ac_word$ac_exec_ext"
  2950.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2951.       break 2
  2952. --- 5877,5883 ----
  2953.     IFS=$as_save_IFS
  2954.     test -z "$as_dir" && as_dir=.
  2955.       for ac_exec_ext in '' $ac_executable_extensions; do
  2956. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  2957.       ac_cv_path_vi_cv_path_python3="$as_dir/$ac_word$ac_exec_ext"
  2958.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2959.       break 2
  2960. ***************
  2961. *** 5876,5882 ****
  2962.   
  2963.           { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python version" >&5
  2964.   $as_echo_n "checking Python version... " >&6; }
  2965. ! if test "${vi_cv_var_python3_version+set}" = set; then :
  2966.     $as_echo_n "(cached) " >&6
  2967.   else
  2968.     vi_cv_var_python3_version=`
  2969. --- 5906,5912 ----
  2970.   
  2971.           { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python version" >&5
  2972.   $as_echo_n "checking Python version... " >&6; }
  2973. ! if ${vi_cv_var_python3_version+:} false; then :
  2974.     $as_echo_n "(cached) " >&6
  2975.   else
  2976.     vi_cv_var_python3_version=`
  2977. ***************
  2978. *** 5896,5902 ****
  2979.   
  2980.               { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python's abiflags" >&5
  2981.   $as_echo_n "checking Python's abiflags... " >&6; }
  2982. ! if test "${vi_cv_var_python3_abiflags+set}" = set; then :
  2983.     $as_echo_n "(cached) " >&6
  2984.   else
  2985.   
  2986. --- 5926,5932 ----
  2987.   
  2988.               { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python's abiflags" >&5
  2989.   $as_echo_n "checking Python's abiflags... " >&6; }
  2990. ! if ${vi_cv_var_python3_abiflags+:} false; then :
  2991.     $as_echo_n "(cached) " >&6
  2992.   else
  2993.   
  2994. ***************
  2995. *** 5913,5919 ****
  2996.   
  2997.               { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python's install prefix" >&5
  2998.   $as_echo_n "checking Python's install prefix... " >&6; }
  2999. ! if test "${vi_cv_path_python3_pfx+set}" = set; then :
  3000.     $as_echo_n "(cached) " >&6
  3001.   else
  3002.      vi_cv_path_python3_pfx=`
  3003. --- 5943,5949 ----
  3004.   
  3005.               { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python's install prefix" >&5
  3006.   $as_echo_n "checking Python's install prefix... " >&6; }
  3007. ! if ${vi_cv_path_python3_pfx+:} false; then :
  3008.     $as_echo_n "(cached) " >&6
  3009.   else
  3010.      vi_cv_path_python3_pfx=`
  3011. ***************
  3012. *** 5925,5931 ****
  3013.   
  3014.               { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python's execution prefix" >&5
  3015.   $as_echo_n "checking Python's execution prefix... " >&6; }
  3016. ! if test "${vi_cv_path_python3_epfx+set}" = set; then :
  3017.     $as_echo_n "(cached) " >&6
  3018.   else
  3019.      vi_cv_path_python3_epfx=`
  3020. --- 5955,5961 ----
  3021.   
  3022.               { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python's execution prefix" >&5
  3023.   $as_echo_n "checking Python's execution prefix... " >&6; }
  3024. ! if ${vi_cv_path_python3_epfx+:} false; then :
  3025.     $as_echo_n "(cached) " >&6
  3026.   else
  3027.      vi_cv_path_python3_epfx=`
  3028. ***************
  3029. *** 5936,5942 ****
  3030.   $as_echo "$vi_cv_path_python3_epfx" >&6; }
  3031.   
  3032.   
  3033. !       if test "${vi_cv_path_python3path+set}" = set; then :
  3034.     $as_echo_n "(cached) " >&6
  3035.   else
  3036.      vi_cv_path_python3path=`
  3037. --- 5966,5972 ----
  3038.   $as_echo "$vi_cv_path_python3_epfx" >&6; }
  3039.   
  3040.   
  3041. !       if ${vi_cv_path_python3path+:} false; then :
  3042.     $as_echo_n "(cached) " >&6
  3043.   else
  3044.      vi_cv_path_python3path=`
  3045. ***************
  3046. *** 5956,5962 ****
  3047.   
  3048.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python's configuration directory" >&5
  3049.   $as_echo_n "checking Python's configuration directory... " >&6; }
  3050. ! if test "${vi_cv_path_python3_conf+set}" = set; then :
  3051.     $as_echo_n "(cached) " >&6
  3052.   else
  3053.   
  3054. --- 5986,5992 ----
  3055.   
  3056.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking Python's configuration directory" >&5
  3057.   $as_echo_n "checking Python's configuration directory... " >&6; }
  3058. ! if ${vi_cv_path_python3_conf+:} false; then :
  3059.     $as_echo_n "(cached) " >&6
  3060.   else
  3061.   
  3062. ***************
  3063. *** 5987,5993 ****
  3064.   $as_echo "can't find it!" >&6; }
  3065.         else
  3066.   
  3067. !                         if test "${vi_cv_path_python3_plibs+set}" = set; then :
  3068.     $as_echo_n "(cached) " >&6
  3069.   else
  3070.   
  3071. --- 6017,6023 ----
  3072.   $as_echo "can't find it!" >&6; }
  3073.         else
  3074.   
  3075. !                         if ${vi_cv_path_python3_plibs+:} false; then :
  3076.     $as_echo_n "(cached) " >&6
  3077.   else
  3078.   
  3079. ***************
  3080. *** 6114,6120 ****
  3081.       fi
  3082.     fi
  3083.     if test "$fail_if_missing" = "yes" -a "$python3_ok" != "yes"; then
  3084. !     as_fn_error "could not configure python3" "$LINENO" 5
  3085.     fi
  3086.   fi
  3087.   
  3088. --- 6144,6150 ----
  3089.       fi
  3090.     fi
  3091.     if test "$fail_if_missing" = "yes" -a "$python3_ok" != "yes"; then
  3092. !     as_fn_error $? "could not configure python3" "$LINENO" 5
  3093.     fi
  3094.   fi
  3095.   
  3096. ***************
  3097. *** 6138,6145 ****
  3098.     if test "$cross_compiling" = yes; then :
  3099.     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  3100.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  3101. ! as_fn_error "cannot run test program while cross compiling
  3102. ! See \`config.log' for more details." "$LINENO" 5; }
  3103.   else
  3104.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3105.   /* end confdefs.h.  */
  3106. --- 6168,6175 ----
  3107.     if test "$cross_compiling" = yes; then :
  3108.     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  3109.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  3110. ! as_fn_error $? "cannot run test program while cross compiling
  3111. ! See \`config.log' for more details" "$LINENO" 5; }
  3112.   else
  3113.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3114.   /* end confdefs.h.  */
  3115. ***************
  3116. *** 6203,6210 ****
  3117.     if test "$cross_compiling" = yes; then :
  3118.     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  3119.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  3120. ! as_fn_error "cannot run test program while cross compiling
  3121. ! See \`config.log' for more details." "$LINENO" 5; }
  3122.   else
  3123.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3124.   /* end confdefs.h.  */
  3125. --- 6233,6240 ----
  3126.     if test "$cross_compiling" = yes; then :
  3127.     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  3128.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  3129. ! as_fn_error $? "cannot run test program while cross compiling
  3130. ! See \`config.log' for more details" "$LINENO" 5; }
  3131.   else
  3132.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3133.   /* end confdefs.h.  */
  3134. ***************
  3135. *** 6378,6384 ****
  3136.   set dummy $tclsh_name; ac_word=$2
  3137.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3138.   $as_echo_n "checking for $ac_word... " >&6; }
  3139. ! if test "${ac_cv_path_vi_cv_path_tcl+set}" = set; then :
  3140.     $as_echo_n "(cached) " >&6
  3141.   else
  3142.     case $vi_cv_path_tcl in
  3143. --- 6408,6414 ----
  3144.   set dummy $tclsh_name; ac_word=$2
  3145.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3146.   $as_echo_n "checking for $ac_word... " >&6; }
  3147. ! if ${ac_cv_path_vi_cv_path_tcl+:} false; then :
  3148.     $as_echo_n "(cached) " >&6
  3149.   else
  3150.     case $vi_cv_path_tcl in
  3151. ***************
  3152. *** 6392,6398 ****
  3153.     IFS=$as_save_IFS
  3154.     test -z "$as_dir" && as_dir=.
  3155.       for ac_exec_ext in '' $ac_executable_extensions; do
  3156. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  3157.       ac_cv_path_vi_cv_path_tcl="$as_dir/$ac_word$ac_exec_ext"
  3158.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3159.       break 2
  3160. --- 6422,6428 ----
  3161.     IFS=$as_save_IFS
  3162.     test -z "$as_dir" && as_dir=.
  3163.       for ac_exec_ext in '' $ac_executable_extensions; do
  3164. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  3165.       ac_cv_path_vi_cv_path_tcl="$as_dir/$ac_word$ac_exec_ext"
  3166.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3167.       break 2
  3168. ***************
  3169. *** 6422,6428 ****
  3170.   set dummy $tclsh_name; ac_word=$2
  3171.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3172.   $as_echo_n "checking for $ac_word... " >&6; }
  3173. ! if test "${ac_cv_path_vi_cv_path_tcl+set}" = set; then :
  3174.     $as_echo_n "(cached) " >&6
  3175.   else
  3176.     case $vi_cv_path_tcl in
  3177. --- 6452,6458 ----
  3178.   set dummy $tclsh_name; ac_word=$2
  3179.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3180.   $as_echo_n "checking for $ac_word... " >&6; }
  3181. ! if ${ac_cv_path_vi_cv_path_tcl+:} false; then :
  3182.     $as_echo_n "(cached) " >&6
  3183.   else
  3184.     case $vi_cv_path_tcl in
  3185. ***************
  3186. *** 6436,6442 ****
  3187.     IFS=$as_save_IFS
  3188.     test -z "$as_dir" && as_dir=.
  3189.       for ac_exec_ext in '' $ac_executable_extensions; do
  3190. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  3191.       ac_cv_path_vi_cv_path_tcl="$as_dir/$ac_word$ac_exec_ext"
  3192.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3193.       break 2
  3194. --- 6466,6472 ----
  3195.     IFS=$as_save_IFS
  3196.     test -z "$as_dir" && as_dir=.
  3197.       for ac_exec_ext in '' $ac_executable_extensions; do
  3198. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  3199.       ac_cv_path_vi_cv_path_tcl="$as_dir/$ac_word$ac_exec_ext"
  3200.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3201.       break 2
  3202. ***************
  3203. *** 6465,6471 ****
  3204.   set dummy $tclsh_name; ac_word=$2
  3205.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3206.   $as_echo_n "checking for $ac_word... " >&6; }
  3207. ! if test "${ac_cv_path_vi_cv_path_tcl+set}" = set; then :
  3208.     $as_echo_n "(cached) " >&6
  3209.   else
  3210.     case $vi_cv_path_tcl in
  3211. --- 6495,6501 ----
  3212.   set dummy $tclsh_name; ac_word=$2
  3213.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3214.   $as_echo_n "checking for $ac_word... " >&6; }
  3215. ! if ${ac_cv_path_vi_cv_path_tcl+:} false; then :
  3216.     $as_echo_n "(cached) " >&6
  3217.   else
  3218.     case $vi_cv_path_tcl in
  3219. ***************
  3220. *** 6479,6485 ****
  3221.     IFS=$as_save_IFS
  3222.     test -z "$as_dir" && as_dir=.
  3223.       for ac_exec_ext in '' $ac_executable_extensions; do
  3224. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  3225.       ac_cv_path_vi_cv_path_tcl="$as_dir/$ac_word$ac_exec_ext"
  3226.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3227.       break 2
  3228. --- 6509,6515 ----
  3229.     IFS=$as_save_IFS
  3230.     test -z "$as_dir" && as_dir=.
  3231.       for ac_exec_ext in '' $ac_executable_extensions; do
  3232. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  3233.       ac_cv_path_vi_cv_path_tcl="$as_dir/$ac_word$ac_exec_ext"
  3234.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3235.       break 2
  3236. ***************
  3237. *** 6508,6514 ****
  3238.   set dummy $tclsh_name; ac_word=$2
  3239.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3240.   $as_echo_n "checking for $ac_word... " >&6; }
  3241. ! if test "${ac_cv_path_vi_cv_path_tcl+set}" = set; then :
  3242.     $as_echo_n "(cached) " >&6
  3243.   else
  3244.     case $vi_cv_path_tcl in
  3245. --- 6538,6544 ----
  3246.   set dummy $tclsh_name; ac_word=$2
  3247.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3248.   $as_echo_n "checking for $ac_word... " >&6; }
  3249. ! if ${ac_cv_path_vi_cv_path_tcl+:} false; then :
  3250.     $as_echo_n "(cached) " >&6
  3251.   else
  3252.     case $vi_cv_path_tcl in
  3253. ***************
  3254. *** 6522,6528 ****
  3255.     IFS=$as_save_IFS
  3256.     test -z "$as_dir" && as_dir=.
  3257.       for ac_exec_ext in '' $ac_executable_extensions; do
  3258. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  3259.       ac_cv_path_vi_cv_path_tcl="$as_dir/$ac_word$ac_exec_ext"
  3260.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3261.       break 2
  3262. --- 6552,6558 ----
  3263.     IFS=$as_save_IFS
  3264.     test -z "$as_dir" && as_dir=.
  3265.       for ac_exec_ext in '' $ac_executable_extensions; do
  3266. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  3267.       ac_cv_path_vi_cv_path_tcl="$as_dir/$ac_word$ac_exec_ext"
  3268.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3269.       break 2
  3270. ***************
  3271. *** 6551,6557 ****
  3272.   set dummy $tclsh_name; ac_word=$2
  3273.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3274.   $as_echo_n "checking for $ac_word... " >&6; }
  3275. ! if test "${ac_cv_path_vi_cv_path_tcl+set}" = set; then :
  3276.     $as_echo_n "(cached) " >&6
  3277.   else
  3278.     case $vi_cv_path_tcl in
  3279. --- 6581,6587 ----
  3280.   set dummy $tclsh_name; ac_word=$2
  3281.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3282.   $as_echo_n "checking for $ac_word... " >&6; }
  3283. ! if ${ac_cv_path_vi_cv_path_tcl+:} false; then :
  3284.     $as_echo_n "(cached) " >&6
  3285.   else
  3286.     case $vi_cv_path_tcl in
  3287. ***************
  3288. *** 6565,6571 ****
  3289.     IFS=$as_save_IFS
  3290.     test -z "$as_dir" && as_dir=.
  3291.       for ac_exec_ext in '' $ac_executable_extensions; do
  3292. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  3293.       ac_cv_path_vi_cv_path_tcl="$as_dir/$ac_word$ac_exec_ext"
  3294.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3295.       break 2
  3296. --- 6595,6601 ----
  3297.     IFS=$as_save_IFS
  3298.     test -z "$as_dir" && as_dir=.
  3299.       for ac_exec_ext in '' $ac_executable_extensions; do
  3300. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  3301.       ac_cv_path_vi_cv_path_tcl="$as_dir/$ac_word$ac_exec_ext"
  3302.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3303.       break 2
  3304. ***************
  3305. *** 6682,6688 ****
  3306.       fi
  3307.     fi
  3308.     if test "$fail_if_missing" = "yes" -a -z "$TCL_SRC"; then
  3309. !     as_fn_error "could not configure Tcl" "$LINENO" 5
  3310.     fi
  3311.   fi
  3312.   
  3313. --- 6712,6718 ----
  3314.       fi
  3315.     fi
  3316.     if test "$fail_if_missing" = "yes" -a -z "$TCL_SRC"; then
  3317. !     as_fn_error $? "could not configure Tcl" "$LINENO" 5
  3318.     fi
  3319.   fi
  3320.   
  3321. ***************
  3322. *** 6720,6726 ****
  3323.   set dummy $RUBY_CMD; ac_word=$2
  3324.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3325.   $as_echo_n "checking for $ac_word... " >&6; }
  3326. ! if test "${ac_cv_path_vi_cv_path_ruby+set}" = set; then :
  3327.     $as_echo_n "(cached) " >&6
  3328.   else
  3329.     case $vi_cv_path_ruby in
  3330. --- 6750,6756 ----
  3331.   set dummy $RUBY_CMD; ac_word=$2
  3332.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3333.   $as_echo_n "checking for $ac_word... " >&6; }
  3334. ! if ${ac_cv_path_vi_cv_path_ruby+:} false; then :
  3335.     $as_echo_n "(cached) " >&6
  3336.   else
  3337.     case $vi_cv_path_ruby in
  3338. ***************
  3339. *** 6734,6740 ****
  3340.     IFS=$as_save_IFS
  3341.     test -z "$as_dir" && as_dir=.
  3342.       for ac_exec_ext in '' $ac_executable_extensions; do
  3343. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  3344.       ac_cv_path_vi_cv_path_ruby="$as_dir/$ac_word$ac_exec_ext"
  3345.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3346.       break 2
  3347. --- 6764,6770 ----
  3348.     IFS=$as_save_IFS
  3349.     test -z "$as_dir" && as_dir=.
  3350.       for ac_exec_ext in '' $ac_executable_extensions; do
  3351. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  3352.       ac_cv_path_vi_cv_path_ruby="$as_dir/$ac_word$ac_exec_ext"
  3353.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3354.       break 2
  3355. ***************
  3356. *** 6836,6842 ****
  3357.     fi
  3358.   
  3359.     if test "$fail_if_missing" = "yes" -a -z "$RUBY_OBJ"; then
  3360. !     as_fn_error "could not configure Ruby" "$LINENO" 5
  3361.     fi
  3362.   fi
  3363.   
  3364. --- 6866,6872 ----
  3365.     fi
  3366.   
  3367.     if test "$fail_if_missing" = "yes" -a -z "$RUBY_OBJ"; then
  3368. !     as_fn_error $? "could not configure Ruby" "$LINENO" 5
  3369.     fi
  3370.   fi
  3371.   
  3372. ***************
  3373. *** 6898,6904 ****
  3374.   $as_echo "no" >&6; }
  3375.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for socket in -lsocket" >&5
  3376.   $as_echo_n "checking for socket in -lsocket... " >&6; }
  3377. ! if test "${ac_cv_lib_socket_socket+set}" = set; then :
  3378.     $as_echo_n "(cached) " >&6
  3379.   else
  3380.     ac_check_lib_save_LIBS=$LIBS
  3381. --- 6928,6934 ----
  3382.   $as_echo "no" >&6; }
  3383.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for socket in -lsocket" >&5
  3384.   $as_echo_n "checking for socket in -lsocket... " >&6; }
  3385. ! if ${ac_cv_lib_socket_socket+:} false; then :
  3386.     $as_echo_n "(cached) " >&6
  3387.   else
  3388.     ac_check_lib_save_LIBS=$LIBS
  3389. ***************
  3390. *** 6932,6938 ****
  3391.   fi
  3392.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_socket" >&5
  3393.   $as_echo "$ac_cv_lib_socket_socket" >&6; }
  3394. ! if test "x$ac_cv_lib_socket_socket" = x""yes; then :
  3395.     cat >>confdefs.h <<_ACEOF
  3396.   #define HAVE_LIBSOCKET 1
  3397.   _ACEOF
  3398. --- 6962,6968 ----
  3399.   fi
  3400.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_socket" >&5
  3401.   $as_echo "$ac_cv_lib_socket_socket" >&6; }
  3402. ! if test "x$ac_cv_lib_socket_socket" = xyes; then :
  3403.     cat >>confdefs.h <<_ACEOF
  3404.   #define HAVE_LIBSOCKET 1
  3405.   _ACEOF
  3406. ***************
  3407. *** 6943,6949 ****
  3408.   
  3409.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5
  3410.   $as_echo_n "checking for gethostbyname in -lnsl... " >&6; }
  3411. ! if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then :
  3412.     $as_echo_n "(cached) " >&6
  3413.   else
  3414.     ac_check_lib_save_LIBS=$LIBS
  3415. --- 6973,6979 ----
  3416.   
  3417.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5
  3418.   $as_echo_n "checking for gethostbyname in -lnsl... " >&6; }
  3419. ! if ${ac_cv_lib_nsl_gethostbyname+:} false; then :
  3420.     $as_echo_n "(cached) " >&6
  3421.   else
  3422.     ac_check_lib_save_LIBS=$LIBS
  3423. ***************
  3424. *** 6977,6983 ****
  3425.   fi
  3426.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5
  3427.   $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; }
  3428. ! if test "x$ac_cv_lib_nsl_gethostbyname" = x""yes; then :
  3429.     cat >>confdefs.h <<_ACEOF
  3430.   #define HAVE_LIBNSL 1
  3431.   _ACEOF
  3432. --- 7007,7013 ----
  3433.   fi
  3434.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5
  3435.   $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; }
  3436. ! if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then :
  3437.     cat >>confdefs.h <<_ACEOF
  3438.   #define HAVE_LIBNSL 1
  3439.   _ACEOF
  3440. ***************
  3441. *** 7127,7133 ****
  3442.   set dummy xmkmf; ac_word=$2
  3443.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3444.   $as_echo_n "checking for $ac_word... " >&6; }
  3445. ! if test "${ac_cv_path_xmkmfpath+set}" = set; then :
  3446.     $as_echo_n "(cached) " >&6
  3447.   else
  3448.     case $xmkmfpath in
  3449. --- 7157,7163 ----
  3450.   set dummy xmkmf; ac_word=$2
  3451.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3452.   $as_echo_n "checking for $ac_word... " >&6; }
  3453. ! if ${ac_cv_path_xmkmfpath+:} false; then :
  3454.     $as_echo_n "(cached) " >&6
  3455.   else
  3456.     case $xmkmfpath in
  3457. ***************
  3458. *** 7141,7147 ****
  3459.     IFS=$as_save_IFS
  3460.     test -z "$as_dir" && as_dir=.
  3461.       for ac_exec_ext in '' $ac_executable_extensions; do
  3462. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  3463.       ac_cv_path_xmkmfpath="$as_dir/$ac_word$ac_exec_ext"
  3464.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3465.       break 2
  3466. --- 7171,7177 ----
  3467.     IFS=$as_save_IFS
  3468.     test -z "$as_dir" && as_dir=.
  3469.       for ac_exec_ext in '' $ac_executable_extensions; do
  3470. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  3471.       ac_cv_path_xmkmfpath="$as_dir/$ac_word$ac_exec_ext"
  3472.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3473.       break 2
  3474. ***************
  3475. *** 7179,7186 ****
  3476.     have_x=disabled
  3477.   else
  3478.     case $x_includes,$x_libraries in #(
  3479. !     *\'*) as_fn_error "cannot use X directory names containing '" "$LINENO" 5;; #(
  3480. !     *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then :
  3481.     $as_echo_n "(cached) " >&6
  3482.   else
  3483.     # One or both of the vars are not set, and there is no cached value.
  3484. --- 7209,7216 ----
  3485.     have_x=disabled
  3486.   else
  3487.     case $x_includes,$x_libraries in #(
  3488. !     *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #(
  3489. !     *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then :
  3490.     $as_echo_n "(cached) " >&6
  3491.   else
  3492.     # One or both of the vars are not set, and there is no cached value.
  3493. ***************
  3494. *** 7197,7203 ****
  3495.       @echo libdir='${LIBDIR}'
  3496.   _ACEOF
  3497.     if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then
  3498. !     # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
  3499.       for ac_var in incroot usrlibdir libdir; do
  3500.         eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`"
  3501.       done
  3502. --- 7227,7233 ----
  3503.       @echo libdir='${LIBDIR}'
  3504.   _ACEOF
  3505.     if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then
  3506. !     # GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
  3507.       for ac_var in incroot usrlibdir libdir; do
  3508.         eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`"
  3509.       done
  3510. ***************
  3511. *** 7283,7289 ****
  3512.     fi
  3513.   done
  3514.   fi
  3515. ! rm -f conftest.err conftest.$ac_ext
  3516.   fi # $ac_x_includes = no
  3517.   
  3518.   if test "$ac_x_libraries" = no; then
  3519. --- 7313,7319 ----
  3520.     fi
  3521.   done
  3522.   fi
  3523. ! rm -f conftest.err conftest.i conftest.$ac_ext
  3524.   fi # $ac_x_includes = no
  3525.   
  3526.   if test "$ac_x_libraries" = no; then
  3527. ***************
  3528. *** 7457,7463 ****
  3529.   else
  3530.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5
  3531.   $as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; }
  3532. ! if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then :
  3533.     $as_echo_n "(cached) " >&6
  3534.   else
  3535.     ac_check_lib_save_LIBS=$LIBS
  3536. --- 7487,7493 ----
  3537.   else
  3538.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5
  3539.   $as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; }
  3540. ! if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then :
  3541.     $as_echo_n "(cached) " >&6
  3542.   else
  3543.     ac_check_lib_save_LIBS=$LIBS
  3544. ***************
  3545. *** 7491,7504 ****
  3546.   fi
  3547.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
  3548.   $as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; }
  3549. ! if test "x$ac_cv_lib_dnet_dnet_ntoa" = x""yes; then :
  3550.     X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
  3551.   fi
  3552.   
  3553.       if test $ac_cv_lib_dnet_dnet_ntoa = no; then
  3554.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5
  3555.   $as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; }
  3556. ! if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then :
  3557.     $as_echo_n "(cached) " >&6
  3558.   else
  3559.     ac_check_lib_save_LIBS=$LIBS
  3560. --- 7521,7534 ----
  3561.   fi
  3562.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
  3563.   $as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; }
  3564. ! if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then :
  3565.     X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
  3566.   fi
  3567.   
  3568.       if test $ac_cv_lib_dnet_dnet_ntoa = no; then
  3569.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5
  3570.   $as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; }
  3571. ! if ${ac_cv_lib_dnet_stub_dnet_ntoa+:} false; then :
  3572.     $as_echo_n "(cached) " >&6
  3573.   else
  3574.     ac_check_lib_save_LIBS=$LIBS
  3575. ***************
  3576. *** 7532,7538 ****
  3577.   fi
  3578.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
  3579.   $as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; }
  3580. ! if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = x""yes; then :
  3581.     X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
  3582.   fi
  3583.   
  3584. --- 7562,7568 ----
  3585.   fi
  3586.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
  3587.   $as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; }
  3588. ! if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes; then :
  3589.     X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
  3590.   fi
  3591.   
  3592. ***************
  3593. *** 7551,7564 ****
  3594.       # The functions gethostbyname, getservbyname, and inet_addr are
  3595.       # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
  3596.       ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname"
  3597. ! if test "x$ac_cv_func_gethostbyname" = x""yes; then :
  3598.   
  3599.   fi
  3600.   
  3601.       if test $ac_cv_func_gethostbyname = no; then
  3602.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5
  3603.   $as_echo_n "checking for gethostbyname in -lnsl... " >&6; }
  3604. ! if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then :
  3605.     $as_echo_n "(cached) " >&6
  3606.   else
  3607.     ac_check_lib_save_LIBS=$LIBS
  3608. --- 7581,7594 ----
  3609.       # The functions gethostbyname, getservbyname, and inet_addr are
  3610.       # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
  3611.       ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname"
  3612. ! if test "x$ac_cv_func_gethostbyname" = xyes; then :
  3613.   
  3614.   fi
  3615.   
  3616.       if test $ac_cv_func_gethostbyname = no; then
  3617.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5
  3618.   $as_echo_n "checking for gethostbyname in -lnsl... " >&6; }
  3619. ! if ${ac_cv_lib_nsl_gethostbyname+:} false; then :
  3620.     $as_echo_n "(cached) " >&6
  3621.   else
  3622.     ac_check_lib_save_LIBS=$LIBS
  3623. ***************
  3624. *** 7592,7605 ****
  3625.   fi
  3626.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5
  3627.   $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; }
  3628. ! if test "x$ac_cv_lib_nsl_gethostbyname" = x""yes; then :
  3629.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
  3630.   fi
  3631.   
  3632.         if test $ac_cv_lib_nsl_gethostbyname = no; then
  3633.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5
  3634.   $as_echo_n "checking for gethostbyname in -lbsd... " >&6; }
  3635. ! if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then :
  3636.     $as_echo_n "(cached) " >&6
  3637.   else
  3638.     ac_check_lib_save_LIBS=$LIBS
  3639. --- 7622,7635 ----
  3640.   fi
  3641.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5
  3642.   $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; }
  3643. ! if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then :
  3644.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
  3645.   fi
  3646.   
  3647.         if test $ac_cv_lib_nsl_gethostbyname = no; then
  3648.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5
  3649.   $as_echo_n "checking for gethostbyname in -lbsd... " >&6; }
  3650. ! if ${ac_cv_lib_bsd_gethostbyname+:} false; then :
  3651.     $as_echo_n "(cached) " >&6
  3652.   else
  3653.     ac_check_lib_save_LIBS=$LIBS
  3654. ***************
  3655. *** 7633,7639 ****
  3656.   fi
  3657.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5
  3658.   $as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; }
  3659. ! if test "x$ac_cv_lib_bsd_gethostbyname" = x""yes; then :
  3660.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
  3661.   fi
  3662.   
  3663. --- 7663,7669 ----
  3664.   fi
  3665.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5
  3666.   $as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; }
  3667. ! if test "x$ac_cv_lib_bsd_gethostbyname" = xyes; then :
  3668.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
  3669.   fi
  3670.   
  3671. ***************
  3672. *** 7648,7661 ****
  3673.       # must be given before -lnsl if both are needed.  We assume that
  3674.       # if connect needs -lnsl, so does gethostbyname.
  3675.       ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect"
  3676. ! if test "x$ac_cv_func_connect" = x""yes; then :
  3677.   
  3678.   fi
  3679.   
  3680.       if test $ac_cv_func_connect = no; then
  3681.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5
  3682.   $as_echo_n "checking for connect in -lsocket... " >&6; }
  3683. ! if test "${ac_cv_lib_socket_connect+set}" = set; then :
  3684.     $as_echo_n "(cached) " >&6
  3685.   else
  3686.     ac_check_lib_save_LIBS=$LIBS
  3687. --- 7678,7691 ----
  3688.       # must be given before -lnsl if both are needed.  We assume that
  3689.       # if connect needs -lnsl, so does gethostbyname.
  3690.       ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect"
  3691. ! if test "x$ac_cv_func_connect" = xyes; then :
  3692.   
  3693.   fi
  3694.   
  3695.       if test $ac_cv_func_connect = no; then
  3696.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5
  3697.   $as_echo_n "checking for connect in -lsocket... " >&6; }
  3698. ! if ${ac_cv_lib_socket_connect+:} false; then :
  3699.     $as_echo_n "(cached) " >&6
  3700.   else
  3701.     ac_check_lib_save_LIBS=$LIBS
  3702. ***************
  3703. *** 7689,7695 ****
  3704.   fi
  3705.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5
  3706.   $as_echo "$ac_cv_lib_socket_connect" >&6; }
  3707. ! if test "x$ac_cv_lib_socket_connect" = x""yes; then :
  3708.     X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
  3709.   fi
  3710.   
  3711. --- 7719,7725 ----
  3712.   fi
  3713.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5
  3714.   $as_echo "$ac_cv_lib_socket_connect" >&6; }
  3715. ! if test "x$ac_cv_lib_socket_connect" = xyes; then :
  3716.     X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
  3717.   fi
  3718.   
  3719. ***************
  3720. *** 7697,7710 ****
  3721.   
  3722.       # Guillermo Gomez says -lposix is necessary on A/UX.
  3723.       ac_fn_c_check_func "$LINENO" "remove" "ac_cv_func_remove"
  3724. ! if test "x$ac_cv_func_remove" = x""yes; then :
  3725.   
  3726.   fi
  3727.   
  3728.       if test $ac_cv_func_remove = no; then
  3729.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5
  3730.   $as_echo_n "checking for remove in -lposix... " >&6; }
  3731. ! if test "${ac_cv_lib_posix_remove+set}" = set; then :
  3732.     $as_echo_n "(cached) " >&6
  3733.   else
  3734.     ac_check_lib_save_LIBS=$LIBS
  3735. --- 7727,7740 ----
  3736.   
  3737.       # Guillermo Gomez says -lposix is necessary on A/UX.
  3738.       ac_fn_c_check_func "$LINENO" "remove" "ac_cv_func_remove"
  3739. ! if test "x$ac_cv_func_remove" = xyes; then :
  3740.   
  3741.   fi
  3742.   
  3743.       if test $ac_cv_func_remove = no; then
  3744.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5
  3745.   $as_echo_n "checking for remove in -lposix... " >&6; }
  3746. ! if ${ac_cv_lib_posix_remove+:} false; then :
  3747.     $as_echo_n "(cached) " >&6
  3748.   else
  3749.     ac_check_lib_save_LIBS=$LIBS
  3750. ***************
  3751. *** 7738,7744 ****
  3752.   fi
  3753.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5
  3754.   $as_echo "$ac_cv_lib_posix_remove" >&6; }
  3755. ! if test "x$ac_cv_lib_posix_remove" = x""yes; then :
  3756.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
  3757.   fi
  3758.   
  3759. --- 7768,7774 ----
  3760.   fi
  3761.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5
  3762.   $as_echo "$ac_cv_lib_posix_remove" >&6; }
  3763. ! if test "x$ac_cv_lib_posix_remove" = xyes; then :
  3764.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
  3765.   fi
  3766.   
  3767. ***************
  3768. *** 7746,7759 ****
  3769.   
  3770.       # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
  3771.       ac_fn_c_check_func "$LINENO" "shmat" "ac_cv_func_shmat"
  3772. ! if test "x$ac_cv_func_shmat" = x""yes; then :
  3773.   
  3774.   fi
  3775.   
  3776.       if test $ac_cv_func_shmat = no; then
  3777.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5
  3778.   $as_echo_n "checking for shmat in -lipc... " >&6; }
  3779. ! if test "${ac_cv_lib_ipc_shmat+set}" = set; then :
  3780.     $as_echo_n "(cached) " >&6
  3781.   else
  3782.     ac_check_lib_save_LIBS=$LIBS
  3783. --- 7776,7789 ----
  3784.   
  3785.       # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
  3786.       ac_fn_c_check_func "$LINENO" "shmat" "ac_cv_func_shmat"
  3787. ! if test "x$ac_cv_func_shmat" = xyes; then :
  3788.   
  3789.   fi
  3790.   
  3791.       if test $ac_cv_func_shmat = no; then
  3792.         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5
  3793.   $as_echo_n "checking for shmat in -lipc... " >&6; }
  3794. ! if ${ac_cv_lib_ipc_shmat+:} false; then :
  3795.     $as_echo_n "(cached) " >&6
  3796.   else
  3797.     ac_check_lib_save_LIBS=$LIBS
  3798. ***************
  3799. *** 7787,7793 ****
  3800.   fi
  3801.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5
  3802.   $as_echo "$ac_cv_lib_ipc_shmat" >&6; }
  3803. ! if test "x$ac_cv_lib_ipc_shmat" = x""yes; then :
  3804.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
  3805.   fi
  3806.   
  3807. --- 7817,7823 ----
  3808.   fi
  3809.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5
  3810.   $as_echo "$ac_cv_lib_ipc_shmat" >&6; }
  3811. ! if test "x$ac_cv_lib_ipc_shmat" = xyes; then :
  3812.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
  3813.   fi
  3814.   
  3815. ***************
  3816. *** 7805,7811 ****
  3817.     # John Interrante, Karl Berry
  3818.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5
  3819.   $as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; }
  3820. ! if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then :
  3821.     $as_echo_n "(cached) " >&6
  3822.   else
  3823.     ac_check_lib_save_LIBS=$LIBS
  3824. --- 7835,7841 ----
  3825.     # John Interrante, Karl Berry
  3826.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5
  3827.   $as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; }
  3828. ! if ${ac_cv_lib_ICE_IceConnectionNumber+:} false; then :
  3829.     $as_echo_n "(cached) " >&6
  3830.   else
  3831.     ac_check_lib_save_LIBS=$LIBS
  3832. ***************
  3833. *** 7839,7845 ****
  3834.   fi
  3835.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
  3836.   $as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; }
  3837. ! if test "x$ac_cv_lib_ICE_IceConnectionNumber" = x""yes; then :
  3838.     X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
  3839.   fi
  3840.   
  3841. --- 7869,7875 ----
  3842.   fi
  3843.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
  3844.   $as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; }
  3845. ! if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes; then :
  3846.     X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
  3847.   fi
  3848.   
  3849. ***************
  3850. *** 7917,7923 ****
  3851.   
  3852.               { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _XdmcpAuthDoIt in -lXdmcp" >&5
  3853.   $as_echo_n "checking for _XdmcpAuthDoIt in -lXdmcp... " >&6; }
  3854. ! if test "${ac_cv_lib_Xdmcp__XdmcpAuthDoIt+set}" = set; then :
  3855.     $as_echo_n "(cached) " >&6
  3856.   else
  3857.     ac_check_lib_save_LIBS=$LIBS
  3858. --- 7947,7953 ----
  3859.   
  3860.               { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _XdmcpAuthDoIt in -lXdmcp" >&5
  3861.   $as_echo_n "checking for _XdmcpAuthDoIt in -lXdmcp... " >&6; }
  3862. ! if ${ac_cv_lib_Xdmcp__XdmcpAuthDoIt+:} false; then :
  3863.     $as_echo_n "(cached) " >&6
  3864.   else
  3865.     ac_check_lib_save_LIBS=$LIBS
  3866. ***************
  3867. *** 7951,7964 ****
  3868.   fi
  3869.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xdmcp__XdmcpAuthDoIt" >&5
  3870.   $as_echo "$ac_cv_lib_Xdmcp__XdmcpAuthDoIt" >&6; }
  3871. ! if test "x$ac_cv_lib_Xdmcp__XdmcpAuthDoIt" = x""yes; then :
  3872.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lXdmcp"
  3873.   fi
  3874.   
  3875.   
  3876.                       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceOpenConnection in -lICE" >&5
  3877.   $as_echo_n "checking for IceOpenConnection in -lICE... " >&6; }
  3878. ! if test "${ac_cv_lib_ICE_IceOpenConnection+set}" = set; then :
  3879.     $as_echo_n "(cached) " >&6
  3880.   else
  3881.     ac_check_lib_save_LIBS=$LIBS
  3882. --- 7981,7994 ----
  3883.   fi
  3884.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xdmcp__XdmcpAuthDoIt" >&5
  3885.   $as_echo "$ac_cv_lib_Xdmcp__XdmcpAuthDoIt" >&6; }
  3886. ! if test "x$ac_cv_lib_Xdmcp__XdmcpAuthDoIt" = xyes; then :
  3887.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lXdmcp"
  3888.   fi
  3889.   
  3890.   
  3891.                       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceOpenConnection in -lICE" >&5
  3892.   $as_echo_n "checking for IceOpenConnection in -lICE... " >&6; }
  3893. ! if ${ac_cv_lib_ICE_IceOpenConnection+:} false; then :
  3894.     $as_echo_n "(cached) " >&6
  3895.   else
  3896.     ac_check_lib_save_LIBS=$LIBS
  3897. ***************
  3898. *** 7992,7998 ****
  3899.   fi
  3900.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceOpenConnection" >&5
  3901.   $as_echo "$ac_cv_lib_ICE_IceOpenConnection" >&6; }
  3902. ! if test "x$ac_cv_lib_ICE_IceOpenConnection" = x""yes; then :
  3903.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lSM -lICE"
  3904.   fi
  3905.   
  3906. --- 8022,8028 ----
  3907.   fi
  3908.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceOpenConnection" >&5
  3909.   $as_echo "$ac_cv_lib_ICE_IceOpenConnection" >&6; }
  3910. ! if test "x$ac_cv_lib_ICE_IceOpenConnection" = xyes; then :
  3911.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lSM -lICE"
  3912.   fi
  3913.   
  3914. ***************
  3915. *** 8000,8006 ****
  3916.           LDFLAGS="$X_LIBS $ac_save_LDFLAGS"
  3917.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpmCreatePixmapFromData in -lXpm" >&5
  3918.   $as_echo_n "checking for XpmCreatePixmapFromData in -lXpm... " >&6; }
  3919. ! if test "${ac_cv_lib_Xpm_XpmCreatePixmapFromData+set}" = set; then :
  3920.     $as_echo_n "(cached) " >&6
  3921.   else
  3922.     ac_check_lib_save_LIBS=$LIBS
  3923. --- 8030,8036 ----
  3924.           LDFLAGS="$X_LIBS $ac_save_LDFLAGS"
  3925.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpmCreatePixmapFromData in -lXpm" >&5
  3926.   $as_echo_n "checking for XpmCreatePixmapFromData in -lXpm... " >&6; }
  3927. ! if ${ac_cv_lib_Xpm_XpmCreatePixmapFromData+:} false; then :
  3928.     $as_echo_n "(cached) " >&6
  3929.   else
  3930.     ac_check_lib_save_LIBS=$LIBS
  3931. ***************
  3932. *** 8034,8040 ****
  3933.   fi
  3934.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xpm_XpmCreatePixmapFromData" >&5
  3935.   $as_echo "$ac_cv_lib_Xpm_XpmCreatePixmapFromData" >&6; }
  3936. ! if test "x$ac_cv_lib_Xpm_XpmCreatePixmapFromData" = x""yes; then :
  3937.     X_PRE_LIBS="$X_PRE_LIBS -lXpm"
  3938.   fi
  3939.   
  3940. --- 8064,8070 ----
  3941.   fi
  3942.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xpm_XpmCreatePixmapFromData" >&5
  3943.   $as_echo "$ac_cv_lib_Xpm_XpmCreatePixmapFromData" >&6; }
  3944. ! if test "x$ac_cv_lib_Xpm_XpmCreatePixmapFromData" = xyes; then :
  3945.     X_PRE_LIBS="$X_PRE_LIBS -lXpm"
  3946.   fi
  3947.   
  3948. ***************
  3949. *** 8092,8102 ****
  3950.   
  3951.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of wchar_t is 2 bytes" >&5
  3952.   $as_echo_n "checking size of wchar_t is 2 bytes... " >&6; }
  3953. !     if test "${ac_cv_small_wchar_t+set}" = set; then :
  3954.     $as_echo_n "(cached) " >&6
  3955.   else
  3956.     if test "$cross_compiling" = yes; then :
  3957. !   as_fn_error "failed to compile test program" "$LINENO" 5
  3958.   else
  3959.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3960.   /* end confdefs.h.  */
  3961. --- 8122,8132 ----
  3962.   
  3963.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of wchar_t is 2 bytes" >&5
  3964.   $as_echo_n "checking size of wchar_t is 2 bytes... " >&6; }
  3965. !     if ${ac_cv_small_wchar_t+:} false; then :
  3966.     $as_echo_n "(cached) " >&6
  3967.   else
  3968.     if test "$cross_compiling" = yes; then :
  3969. !   as_fn_error $? "failed to compile test program" "$LINENO" 5
  3970.   else
  3971.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3972.   /* end confdefs.h.  */
  3973. ***************
  3974. *** 8395,8401 ****
  3975.   set dummy pkg-config; ac_word=$2
  3976.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3977.   $as_echo_n "checking for $ac_word... " >&6; }
  3978. ! if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
  3979.     $as_echo_n "(cached) " >&6
  3980.   else
  3981.     case $PKG_CONFIG in
  3982. --- 8425,8431 ----
  3983.   set dummy pkg-config; ac_word=$2
  3984.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3985.   $as_echo_n "checking for $ac_word... " >&6; }
  3986. ! if ${ac_cv_path_PKG_CONFIG+:} false; then :
  3987.     $as_echo_n "(cached) " >&6
  3988.   else
  3989.     case $PKG_CONFIG in
  3990. ***************
  3991. *** 8409,8415 ****
  3992.     IFS=$as_save_IFS
  3993.     test -z "$as_dir" && as_dir=.
  3994.       for ac_exec_ext in '' $ac_executable_extensions; do
  3995. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  3996.       ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  3997.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3998.       break 2
  3999. --- 8439,8445 ----
  4000.     IFS=$as_save_IFS
  4001.     test -z "$as_dir" && as_dir=.
  4002.       for ac_exec_ext in '' $ac_executable_extensions; do
  4003. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  4004.       ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
  4005.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  4006.       break 2
  4007. ***************
  4008. *** 8634,8640 ****
  4009.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
  4010.   $as_echo "not found" >&6; }
  4011.         if test "x" = xfail; then
  4012. !     as_fn_error "Could not find libgnomeui-2.0 via pkg-config" "$LINENO" 5
  4013.         fi
  4014.       fi
  4015.     }
  4016. --- 8664,8670 ----
  4017.         { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
  4018.   $as_echo "not found" >&6; }
  4019.         if test "x" = xfail; then
  4020. !     as_fn_error $? "Could not find libgnomeui-2.0 via pkg-config" "$LINENO" 5
  4021.         fi
  4022.       fi
  4023.     }
  4024. ***************
  4025. *** 8827,8833 ****
  4026.     LDFLAGS="$X_LIBS $LDFLAGS"
  4027.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XShapeQueryExtension in -lXext" >&5
  4028.   $as_echo_n "checking for XShapeQueryExtension in -lXext... " >&6; }
  4029. ! if test "${ac_cv_lib_Xext_XShapeQueryExtension+set}" = set; then :
  4030.     $as_echo_n "(cached) " >&6
  4031.   else
  4032.     ac_check_lib_save_LIBS=$LIBS
  4033. --- 8857,8863 ----
  4034.     LDFLAGS="$X_LIBS $LDFLAGS"
  4035.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XShapeQueryExtension in -lXext" >&5
  4036.   $as_echo_n "checking for XShapeQueryExtension in -lXext... " >&6; }
  4037. ! if ${ac_cv_lib_Xext_XShapeQueryExtension+:} false; then :
  4038.     $as_echo_n "(cached) " >&6
  4039.   else
  4040.     ac_check_lib_save_LIBS=$LIBS
  4041. ***************
  4042. *** 8861,8873 ****
  4043.   fi
  4044.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShapeQueryExtension" >&5
  4045.   $as_echo "$ac_cv_lib_Xext_XShapeQueryExtension" >&6; }
  4046. ! if test "x$ac_cv_lib_Xext_XShapeQueryExtension" = x""yes; then :
  4047.     GUI_X_LIBS="-lXext"
  4048.   fi
  4049.   
  4050.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wslen in -lw" >&5
  4051.   $as_echo_n "checking for wslen in -lw... " >&6; }
  4052. ! if test "${ac_cv_lib_w_wslen+set}" = set; then :
  4053.     $as_echo_n "(cached) " >&6
  4054.   else
  4055.     ac_check_lib_save_LIBS=$LIBS
  4056. --- 8891,8903 ----
  4057.   fi
  4058.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShapeQueryExtension" >&5
  4059.   $as_echo "$ac_cv_lib_Xext_XShapeQueryExtension" >&6; }
  4060. ! if test "x$ac_cv_lib_Xext_XShapeQueryExtension" = xyes; then :
  4061.     GUI_X_LIBS="-lXext"
  4062.   fi
  4063.   
  4064.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wslen in -lw" >&5
  4065.   $as_echo_n "checking for wslen in -lw... " >&6; }
  4066. ! if ${ac_cv_lib_w_wslen+:} false; then :
  4067.     $as_echo_n "(cached) " >&6
  4068.   else
  4069.     ac_check_lib_save_LIBS=$LIBS
  4070. ***************
  4071. *** 8901,8913 ****
  4072.   fi
  4073.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_w_wslen" >&5
  4074.   $as_echo "$ac_cv_lib_w_wslen" >&6; }
  4075. ! if test "x$ac_cv_lib_w_wslen" = x""yes; then :
  4076.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lw"
  4077.   fi
  4078.   
  4079.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlsym in -ldl" >&5
  4080.   $as_echo_n "checking for dlsym in -ldl... " >&6; }
  4081. ! if test "${ac_cv_lib_dl_dlsym+set}" = set; then :
  4082.     $as_echo_n "(cached) " >&6
  4083.   else
  4084.     ac_check_lib_save_LIBS=$LIBS
  4085. --- 8931,8943 ----
  4086.   fi
  4087.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_w_wslen" >&5
  4088.   $as_echo "$ac_cv_lib_w_wslen" >&6; }
  4089. ! if test "x$ac_cv_lib_w_wslen" = xyes; then :
  4090.     X_EXTRA_LIBS="$X_EXTRA_LIBS -lw"
  4091.   fi
  4092.   
  4093.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlsym in -ldl" >&5
  4094.   $as_echo_n "checking for dlsym in -ldl... " >&6; }
  4095. ! if ${ac_cv_lib_dl_dlsym+:} false; then :
  4096.     $as_echo_n "(cached) " >&6
  4097.   else
  4098.     ac_check_lib_save_LIBS=$LIBS
  4099. ***************
  4100. *** 8941,8953 ****
  4101.   fi
  4102.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlsym" >&5
  4103.   $as_echo "$ac_cv_lib_dl_dlsym" >&6; }
  4104. ! if test "x$ac_cv_lib_dl_dlsym" = x""yes; then :
  4105.     X_EXTRA_LIBS="$X_EXTRA_LIBS -ldl"
  4106.   fi
  4107.   
  4108.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XmuCreateStippledPixmap in -lXmu" >&5
  4109.   $as_echo_n "checking for XmuCreateStippledPixmap in -lXmu... " >&6; }
  4110. ! if test "${ac_cv_lib_Xmu_XmuCreateStippledPixmap+set}" = set; then :
  4111.     $as_echo_n "(cached) " >&6
  4112.   else
  4113.     ac_check_lib_save_LIBS=$LIBS
  4114. --- 8971,8983 ----
  4115.   fi
  4116.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlsym" >&5
  4117.   $as_echo "$ac_cv_lib_dl_dlsym" >&6; }
  4118. ! if test "x$ac_cv_lib_dl_dlsym" = xyes; then :
  4119.     X_EXTRA_LIBS="$X_EXTRA_LIBS -ldl"
  4120.   fi
  4121.   
  4122.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XmuCreateStippledPixmap in -lXmu" >&5
  4123.   $as_echo_n "checking for XmuCreateStippledPixmap in -lXmu... " >&6; }
  4124. ! if ${ac_cv_lib_Xmu_XmuCreateStippledPixmap+:} false; then :
  4125.     $as_echo_n "(cached) " >&6
  4126.   else
  4127.     ac_check_lib_save_LIBS=$LIBS
  4128. ***************
  4129. *** 8981,8994 ****
  4130.   fi
  4131.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xmu_XmuCreateStippledPixmap" >&5
  4132.   $as_echo "$ac_cv_lib_Xmu_XmuCreateStippledPixmap" >&6; }
  4133. ! if test "x$ac_cv_lib_Xmu_XmuCreateStippledPixmap" = x""yes; then :
  4134.     GUI_X_LIBS="-lXmu $GUI_X_LIBS"
  4135.   fi
  4136.   
  4137.     if test -z "$SKIP_MOTIF"; then
  4138.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpEndJob in -lXp" >&5
  4139.   $as_echo_n "checking for XpEndJob in -lXp... " >&6; }
  4140. ! if test "${ac_cv_lib_Xp_XpEndJob+set}" = set; then :
  4141.     $as_echo_n "(cached) " >&6
  4142.   else
  4143.     ac_check_lib_save_LIBS=$LIBS
  4144. --- 9011,9024 ----
  4145.   fi
  4146.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xmu_XmuCreateStippledPixmap" >&5
  4147.   $as_echo "$ac_cv_lib_Xmu_XmuCreateStippledPixmap" >&6; }
  4148. ! if test "x$ac_cv_lib_Xmu_XmuCreateStippledPixmap" = xyes; then :
  4149.     GUI_X_LIBS="-lXmu $GUI_X_LIBS"
  4150.   fi
  4151.   
  4152.     if test -z "$SKIP_MOTIF"; then
  4153.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpEndJob in -lXp" >&5
  4154.   $as_echo_n "checking for XpEndJob in -lXp... " >&6; }
  4155. ! if ${ac_cv_lib_Xp_XpEndJob+:} false; then :
  4156.     $as_echo_n "(cached) " >&6
  4157.   else
  4158.     ac_check_lib_save_LIBS=$LIBS
  4159. ***************
  4160. *** 9022,9028 ****
  4161.   fi
  4162.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xp_XpEndJob" >&5
  4163.   $as_echo "$ac_cv_lib_Xp_XpEndJob" >&6; }
  4164. ! if test "x$ac_cv_lib_Xp_XpEndJob" = x""yes; then :
  4165.     GUI_X_LIBS="-lXp $GUI_X_LIBS"
  4166.   fi
  4167.   
  4168. --- 9052,9058 ----
  4169.   fi
  4170.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xp_XpEndJob" >&5
  4171.   $as_echo "$ac_cv_lib_Xp_XpEndJob" >&6; }
  4172. ! if test "x$ac_cv_lib_Xp_XpEndJob" = xyes; then :
  4173.     GUI_X_LIBS="-lXp $GUI_X_LIBS"
  4174.   fi
  4175.   
  4176. ***************
  4177. *** 9061,9067 ****
  4178.     for ac_header in X11/SM/SMlib.h
  4179.   do :
  4180.     ac_fn_c_check_header_mongrel "$LINENO" "X11/SM/SMlib.h" "ac_cv_header_X11_SM_SMlib_h" "$ac_includes_default"
  4181. ! if test "x$ac_cv_header_X11_SM_SMlib_h" = x""yes; then :
  4182.     cat >>confdefs.h <<_ACEOF
  4183.   #define HAVE_X11_SM_SMLIB_H 1
  4184.   _ACEOF
  4185. --- 9091,9097 ----
  4186.     for ac_header in X11/SM/SMlib.h
  4187.   do :
  4188.     ac_fn_c_check_header_mongrel "$LINENO" "X11/SM/SMlib.h" "ac_cv_header_X11_SM_SMlib_h" "$ac_includes_default"
  4189. ! if test "x$ac_cv_header_X11_SM_SMlib_h" = xyes; then :
  4190.     cat >>confdefs.h <<_ACEOF
  4191.   #define HAVE_X11_SM_SMLIB_H 1
  4192.   _ACEOF
  4193. ***************
  4194. *** 9081,9088 ****
  4195.   do :
  4196.     as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  4197.   ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
  4198. ! eval as_val=\$$as_ac_Header
  4199. !    if test "x$as_val" = x""yes; then :
  4200.     cat >>confdefs.h <<_ACEOF
  4201.   #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  4202.   _ACEOF
  4203. --- 9111,9117 ----
  4204.   do :
  4205.     as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  4206.   ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
  4207. ! if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
  4208.     cat >>confdefs.h <<_ACEOF
  4209.   #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  4210.   _ACEOF
  4211. ***************
  4212. *** 9164,9171 ****
  4213.   do :
  4214.     as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  4215.   ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
  4216. ! eval as_val=\$$as_ac_Header
  4217. !    if test "x$as_val" = x""yes; then :
  4218.     cat >>confdefs.h <<_ACEOF
  4219.   #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  4220.   _ACEOF
  4221. --- 9193,9199 ----
  4222.   do :
  4223.     as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  4224.   ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
  4225. ! if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
  4226.     cat >>confdefs.h <<_ACEOF
  4227.   #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  4228.   _ACEOF
  4229. ***************
  4230. *** 9233,9239 ****
  4231.   
  4232.   
  4233.   if test "$enable_workshop" = "yes" -a -n "$SKIP_MOTIF"; then
  4234. !   as_fn_error "cannot use workshop without Motif" "$LINENO" 5
  4235.   fi
  4236.   
  4237.   if test "$enable_xim" = "yes"; then
  4238. --- 9261,9267 ----
  4239.   
  4240.   
  4241.   if test "$enable_workshop" = "yes" -a -n "$SKIP_MOTIF"; then
  4242. !   as_fn_error $? "cannot use workshop without Motif" "$LINENO" 5
  4243.   fi
  4244.   
  4245.   if test "$enable_xim" = "yes"; then
  4246. ***************
  4247. *** 9287,9299 ****
  4248.   
  4249.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether toupper is broken" >&5
  4250.   $as_echo_n "checking whether toupper is broken... " >&6; }
  4251. ! if test "${vim_cv_toupper_broken+set}" = set; then :
  4252.     $as_echo_n "(cached) " >&6
  4253.   else
  4254.   
  4255.       if test "$cross_compiling" = yes; then :
  4256.   
  4257. !     as_fn_error "cross-compiling: please set 'vim_cv_toupper_broken'" "$LINENO" 5
  4258.   
  4259.   else
  4260.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4261. --- 9315,9327 ----
  4262.   
  4263.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether toupper is broken" >&5
  4264.   $as_echo_n "checking whether toupper is broken... " >&6; }
  4265. ! if ${vim_cv_toupper_broken+:} false; then :
  4266.     $as_echo_n "(cached) " >&6
  4267.   else
  4268.   
  4269.       if test "$cross_compiling" = yes; then :
  4270.   
  4271. !     as_fn_error $? "cross-compiling: please set 'vim_cv_toupper_broken'" "$LINENO" 5
  4272.   
  4273.   else
  4274.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4275. ***************
  4276. *** 9377,9383 ****
  4277.   rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  4278.   
  4279.   ac_fn_c_check_header_mongrel "$LINENO" "elf.h" "ac_cv_header_elf_h" "$ac_includes_default"
  4280. ! if test "x$ac_cv_header_elf_h" = x""yes; then :
  4281.     HAS_ELF=1
  4282.   fi
  4283.   
  4284. --- 9405,9411 ----
  4285.   rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  4286.   
  4287.   ac_fn_c_check_header_mongrel "$LINENO" "elf.h" "ac_cv_header_elf_h" "$ac_includes_default"
  4288. ! if test "x$ac_cv_header_elf_h" = xyes; then :
  4289.     HAS_ELF=1
  4290.   fi
  4291.   
  4292. ***************
  4293. *** 9385,9391 ****
  4294.   if test "$HAS_ELF" = 1; then
  4295.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lelf" >&5
  4296.   $as_echo_n "checking for main in -lelf... " >&6; }
  4297. ! if test "${ac_cv_lib_elf_main+set}" = set; then :
  4298.     $as_echo_n "(cached) " >&6
  4299.   else
  4300.     ac_check_lib_save_LIBS=$LIBS
  4301. --- 9413,9419 ----
  4302.   if test "$HAS_ELF" = 1; then
  4303.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lelf" >&5
  4304.   $as_echo_n "checking for main in -lelf... " >&6; }
  4305. ! if ${ac_cv_lib_elf_main+:} false; then :
  4306.     $as_echo_n "(cached) " >&6
  4307.   else
  4308.     ac_check_lib_save_LIBS=$LIBS
  4309. ***************
  4310. *** 9413,9419 ****
  4311.   fi
  4312.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_elf_main" >&5
  4313.   $as_echo "$ac_cv_lib_elf_main" >&6; }
  4314. ! if test "x$ac_cv_lib_elf_main" = x""yes; then :
  4315.     cat >>confdefs.h <<_ACEOF
  4316.   #define HAVE_LIBELF 1
  4317.   _ACEOF
  4318. --- 9441,9447 ----
  4319.   fi
  4320.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_elf_main" >&5
  4321.   $as_echo "$ac_cv_lib_elf_main" >&6; }
  4322. ! if test "x$ac_cv_lib_elf_main" = xyes; then :
  4323.     cat >>confdefs.h <<_ACEOF
  4324.   #define HAVE_LIBELF 1
  4325.   _ACEOF
  4326. ***************
  4327. *** 9429,9435 ****
  4328.     as_ac_Header=`$as_echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
  4329.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_hdr that defines DIR" >&5
  4330.   $as_echo_n "checking for $ac_hdr that defines DIR... " >&6; }
  4331. ! if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then :
  4332.     $as_echo_n "(cached) " >&6
  4333.   else
  4334.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4335. --- 9457,9463 ----
  4336.     as_ac_Header=`$as_echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
  4337.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_hdr that defines DIR" >&5
  4338.   $as_echo_n "checking for $ac_hdr that defines DIR... " >&6; }
  4339. ! if eval \${$as_ac_Header+:} false; then :
  4340.     $as_echo_n "(cached) " >&6
  4341.   else
  4342.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4343. ***************
  4344. *** 9456,9463 ****
  4345.   eval ac_res=\$$as_ac_Header
  4346.              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  4347.   $as_echo "$ac_res" >&6; }
  4348. ! eval as_val=\$$as_ac_Header
  4349. !    if test "x$as_val" = x""yes; then :
  4350.     cat >>confdefs.h <<_ACEOF
  4351.   #define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1
  4352.   _ACEOF
  4353. --- 9484,9490 ----
  4354.   eval ac_res=\$$as_ac_Header
  4355.              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  4356.   $as_echo "$ac_res" >&6; }
  4357. ! if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
  4358.     cat >>confdefs.h <<_ACEOF
  4359.   #define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1
  4360.   _ACEOF
  4361. ***************
  4362. *** 9470,9476 ****
  4363.   if test $ac_header_dirent = dirent.h; then
  4364.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5
  4365.   $as_echo_n "checking for library containing opendir... " >&6; }
  4366. ! if test "${ac_cv_search_opendir+set}" = set; then :
  4367.     $as_echo_n "(cached) " >&6
  4368.   else
  4369.     ac_func_search_save_LIBS=$LIBS
  4370. --- 9497,9503 ----
  4371.   if test $ac_header_dirent = dirent.h; then
  4372.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5
  4373.   $as_echo_n "checking for library containing opendir... " >&6; }
  4374. ! if ${ac_cv_search_opendir+:} false; then :
  4375.     $as_echo_n "(cached) " >&6
  4376.   else
  4377.     ac_func_search_save_LIBS=$LIBS
  4378. ***************
  4379. *** 9504,9514 ****
  4380.   fi
  4381.   rm -f core conftest.err conftest.$ac_objext \
  4382.       conftest$ac_exeext
  4383. !   if test "${ac_cv_search_opendir+set}" = set; then :
  4384.     break
  4385.   fi
  4386.   done
  4387. ! if test "${ac_cv_search_opendir+set}" = set; then :
  4388.   
  4389.   else
  4390.     ac_cv_search_opendir=no
  4391. --- 9531,9541 ----
  4392.   fi
  4393.   rm -f core conftest.err conftest.$ac_objext \
  4394.       conftest$ac_exeext
  4395. !   if ${ac_cv_search_opendir+:} false; then :
  4396.     break
  4397.   fi
  4398.   done
  4399. ! if ${ac_cv_search_opendir+:} false; then :
  4400.   
  4401.   else
  4402.     ac_cv_search_opendir=no
  4403. ***************
  4404. *** 9527,9533 ****
  4405.   else
  4406.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5
  4407.   $as_echo_n "checking for library containing opendir... " >&6; }
  4408. ! if test "${ac_cv_search_opendir+set}" = set; then :
  4409.     $as_echo_n "(cached) " >&6
  4410.   else
  4411.     ac_func_search_save_LIBS=$LIBS
  4412. --- 9554,9560 ----
  4413.   else
  4414.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5
  4415.   $as_echo_n "checking for library containing opendir... " >&6; }
  4416. ! if ${ac_cv_search_opendir+:} false; then :
  4417.     $as_echo_n "(cached) " >&6
  4418.   else
  4419.     ac_func_search_save_LIBS=$LIBS
  4420. ***************
  4421. *** 9561,9571 ****
  4422.   fi
  4423.   rm -f core conftest.err conftest.$ac_objext \
  4424.       conftest$ac_exeext
  4425. !   if test "${ac_cv_search_opendir+set}" = set; then :
  4426.     break
  4427.   fi
  4428.   done
  4429. ! if test "${ac_cv_search_opendir+set}" = set; then :
  4430.   
  4431.   else
  4432.     ac_cv_search_opendir=no
  4433. --- 9588,9598 ----
  4434.   fi
  4435.   rm -f core conftest.err conftest.$ac_objext \
  4436.       conftest$ac_exeext
  4437. !   if ${ac_cv_search_opendir+:} false; then :
  4438.     break
  4439.   fi
  4440.   done
  4441. ! if ${ac_cv_search_opendir+:} false; then :
  4442.   
  4443.   else
  4444.     ac_cv_search_opendir=no
  4445. ***************
  4446. *** 9625,9632 ****
  4447.   do :
  4448.     as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  4449.   ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
  4450. ! eval as_val=\$$as_ac_Header
  4451. !    if test "x$as_val" = x""yes; then :
  4452.     cat >>confdefs.h <<_ACEOF
  4453.   #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  4454.   _ACEOF
  4455. --- 9652,9658 ----
  4456.   do :
  4457.     as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  4458.   ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
  4459. ! if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
  4460.     cat >>confdefs.h <<_ACEOF
  4461.   #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  4462.   _ACEOF
  4463. ***************
  4464. *** 9642,9648 ****
  4465.   #  include <sys/stream.h>
  4466.   #endif
  4467.   "
  4468. ! if test "x$ac_cv_header_sys_ptem_h" = x""yes; then :
  4469.     cat >>confdefs.h <<_ACEOF
  4470.   #define HAVE_SYS_PTEM_H 1
  4471.   _ACEOF
  4472. --- 9668,9674 ----
  4473.   #  include <sys/stream.h>
  4474.   #endif
  4475.   "
  4476. ! if test "x$ac_cv_header_sys_ptem_h" = xyes; then :
  4477.     cat >>confdefs.h <<_ACEOF
  4478.   #define HAVE_SYS_PTEM_H 1
  4479.   _ACEOF
  4480. ***************
  4481. *** 9658,9664 ****
  4482.   #  include <sys/param.h>
  4483.   #endif
  4484.   "
  4485. ! if test "x$ac_cv_header_sys_sysctl_h" = x""yes; then :
  4486.     cat >>confdefs.h <<_ACEOF
  4487.   #define HAVE_SYS_SYSCTL_H 1
  4488.   _ACEOF
  4489. --- 9684,9690 ----
  4490.   #  include <sys/param.h>
  4491.   #endif
  4492.   "
  4493. ! if test "x$ac_cv_header_sys_sysctl_h" = xyes; then :
  4494.     cat >>confdefs.h <<_ACEOF
  4495.   #define HAVE_SYS_SYSCTL_H 1
  4496.   _ACEOF
  4497. ***************
  4498. *** 9698,9704 ****
  4499.   for ac_header in strings.h
  4500.   do :
  4501.     ac_fn_c_check_header_mongrel "$LINENO" "strings.h" "ac_cv_header_strings_h" "$ac_includes_default"
  4502. ! if test "x$ac_cv_header_strings_h" = x""yes; then :
  4503.     cat >>confdefs.h <<_ACEOF
  4504.   #define HAVE_STRINGS_H 1
  4505.   _ACEOF
  4506. --- 9724,9730 ----
  4507.   for ac_header in strings.h
  4508.   do :
  4509.     ac_fn_c_check_header_mongrel "$LINENO" "strings.h" "ac_cv_header_strings_h" "$ac_includes_default"
  4510. ! if test "x$ac_cv_header_strings_h" = xyes; then :
  4511.     cat >>confdefs.h <<_ACEOF
  4512.   #define HAVE_STRINGS_H 1
  4513.   _ACEOF
  4514. ***************
  4515. *** 9757,9763 ****
  4516.   if test $ac_cv_c_compiler_gnu = yes; then
  4517.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC needs -traditional" >&5
  4518.   $as_echo_n "checking whether $CC needs -traditional... " >&6; }
  4519. ! if test "${ac_cv_prog_gcc_traditional+set}" = set; then :
  4520.     $as_echo_n "(cached) " >&6
  4521.   else
  4522.       ac_pattern="Autoconf.*'x'"
  4523. --- 9783,9789 ----
  4524.   if test $ac_cv_c_compiler_gnu = yes; then
  4525.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC needs -traditional" >&5
  4526.   $as_echo_n "checking whether $CC needs -traditional... " >&6; }
  4527. ! if ${ac_cv_prog_gcc_traditional+:} false; then :
  4528.     $as_echo_n "(cached) " >&6
  4529.   else
  4530.       ac_pattern="Autoconf.*'x'"
  4531. ***************
  4532. *** 9798,9804 ****
  4533.   
  4534.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5
  4535.   $as_echo_n "checking for an ANSI C-conforming const... " >&6; }
  4536. ! if test "${ac_cv_c_const+set}" = set; then :
  4537.     $as_echo_n "(cached) " >&6
  4538.   else
  4539.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4540. --- 9824,9830 ----
  4541.   
  4542.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5
  4543.   $as_echo_n "checking for an ANSI C-conforming const... " >&6; }
  4544. ! if ${ac_cv_c_const+:} false; then :
  4545.     $as_echo_n "(cached) " >&6
  4546.   else
  4547.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4548. ***************
  4549. *** 9807,9817 ****
  4550.   int
  4551.   main ()
  4552.   {
  4553. ! /* FIXME: Include the comments suggested by Paul. */
  4554.   #ifndef __cplusplus
  4555. !   /* Ultrix mips cc rejects this.  */
  4556.     typedef int charset[2];
  4557. !   const charset cs;
  4558.     /* SunOS 4.1.1 cc rejects this.  */
  4559.     char const *const *pcpcc;
  4560.     char **ppc;
  4561. --- 9833,9843 ----
  4562.   int
  4563.   main ()
  4564.   {
  4565.   #ifndef __cplusplus
  4566. !   /* Ultrix mips cc rejects this sort of thing.  */
  4567.     typedef int charset[2];
  4568. !   const charset cs = { 0, 0 };
  4569.     /* SunOS 4.1.1 cc rejects this.  */
  4570.     char const *const *pcpcc;
  4571.     char **ppc;
  4572. ***************
  4573. *** 9828,9835 ****
  4574.     ++pcpcc;
  4575.     ppc = (char**) pcpcc;
  4576.     pcpcc = (char const *const *) ppc;
  4577. !   { /* SCO 3.2v4 cc rejects this.  */
  4578. !     char *t;
  4579.       char const *s = 0 ? (char *) 0 : (char const *) 0;
  4580.   
  4581.       *t++ = 0;
  4582. --- 9854,9862 ----
  4583.     ++pcpcc;
  4584.     ppc = (char**) pcpcc;
  4585.     pcpcc = (char const *const *) ppc;
  4586. !   { /* SCO 3.2v4 cc rejects this sort of thing.  */
  4587. !     char tx;
  4588. !     char *t = &tx;
  4589.       char const *s = 0 ? (char *) 0 : (char const *) 0;
  4590.   
  4591.       *t++ = 0;
  4592. ***************
  4593. *** 9845,9854 ****
  4594.       iptr p = 0;
  4595.       ++p;
  4596.     }
  4597. !   { /* AIX XL C 1.02.0.0 rejects this saying
  4598.          "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
  4599. !     struct s { int j; const int *ap[3]; };
  4600. !     struct s *b; b->j = 5;
  4601.     }
  4602.     { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
  4603.       const int foo = 10;
  4604. --- 9872,9881 ----
  4605.       iptr p = 0;
  4606.       ++p;
  4607.     }
  4608. !   { /* AIX XL C 1.02.0.0 rejects this sort of thing, saying
  4609.          "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
  4610. !     struct s { int j; const int *ap[3]; } bx;
  4611. !     struct s *b = &bx; b->j = 5;
  4612.     }
  4613.     { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
  4614.       const int foo = 10;
  4615. ***************
  4616. *** 9878,9884 ****
  4617.   
  4618.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working volatile" >&5
  4619.   $as_echo_n "checking for working volatile... " >&6; }
  4620. ! if test "${ac_cv_c_volatile+set}" = set; then :
  4621.     $as_echo_n "(cached) " >&6
  4622.   else
  4623.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4624. --- 9905,9911 ----
  4625.   
  4626.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working volatile" >&5
  4627.   $as_echo_n "checking for working volatile... " >&6; }
  4628. ! if ${ac_cv_c_volatile+:} false; then :
  4629.     $as_echo_n "(cached) " >&6
  4630.   else
  4631.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4632. ***************
  4633. *** 9911,9917 ****
  4634.   fi
  4635.   
  4636.   ac_fn_c_check_type "$LINENO" "mode_t" "ac_cv_type_mode_t" "$ac_includes_default"
  4637. ! if test "x$ac_cv_type_mode_t" = x""yes; then :
  4638.   
  4639.   else
  4640.   
  4641. --- 9938,9944 ----
  4642.   fi
  4643.   
  4644.   ac_fn_c_check_type "$LINENO" "mode_t" "ac_cv_type_mode_t" "$ac_includes_default"
  4645. ! if test "x$ac_cv_type_mode_t" = xyes; then :
  4646.   
  4647.   else
  4648.   
  4649. ***************
  4650. *** 9922,9928 ****
  4651.   fi
  4652.   
  4653.   ac_fn_c_check_type "$LINENO" "off_t" "ac_cv_type_off_t" "$ac_includes_default"
  4654. ! if test "x$ac_cv_type_off_t" = x""yes; then :
  4655.   
  4656.   else
  4657.   
  4658. --- 9949,9955 ----
  4659.   fi
  4660.   
  4661.   ac_fn_c_check_type "$LINENO" "off_t" "ac_cv_type_off_t" "$ac_includes_default"
  4662. ! if test "x$ac_cv_type_off_t" = xyes; then :
  4663.   
  4664.   else
  4665.   
  4666. ***************
  4667. *** 9933,9939 ****
  4668.   fi
  4669.   
  4670.   ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default"
  4671. ! if test "x$ac_cv_type_pid_t" = x""yes; then :
  4672.   
  4673.   else
  4674.   
  4675. --- 9960,9966 ----
  4676.   fi
  4677.   
  4678.   ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default"
  4679. ! if test "x$ac_cv_type_pid_t" = xyes; then :
  4680.   
  4681.   else
  4682.   
  4683. ***************
  4684. *** 9944,9950 ****
  4685.   fi
  4686.   
  4687.   ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default"
  4688. ! if test "x$ac_cv_type_size_t" = x""yes; then :
  4689.   
  4690.   else
  4691.   
  4692. --- 9971,9977 ----
  4693.   fi
  4694.   
  4695.   ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default"
  4696. ! if test "x$ac_cv_type_size_t" = xyes; then :
  4697.   
  4698.   else
  4699.   
  4700. ***************
  4701. *** 9956,9962 ****
  4702.   
  4703.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uid_t in sys/types.h" >&5
  4704.   $as_echo_n "checking for uid_t in sys/types.h... " >&6; }
  4705. ! if test "${ac_cv_type_uid_t+set}" = set; then :
  4706.     $as_echo_n "(cached) " >&6
  4707.   else
  4708.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4709. --- 9983,9989 ----
  4710.   
  4711.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uid_t in sys/types.h" >&5
  4712.   $as_echo_n "checking for uid_t in sys/types.h... " >&6; }
  4713. ! if ${ac_cv_type_uid_t+:} false; then :
  4714.     $as_echo_n "(cached) " >&6
  4715.   else
  4716.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4717. ***************
  4718. *** 10001,10007 ****
  4719.   
  4720.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5
  4721.   $as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; }
  4722. ! if test "${ac_cv_header_time+set}" = set; then :
  4723.     $as_echo_n "(cached) " >&6
  4724.   else
  4725.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4726. --- 10028,10034 ----
  4727.   
  4728.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5
  4729.   $as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; }
  4730. ! if ${ac_cv_header_time+:} false; then :
  4731.     $as_echo_n "(cached) " >&6
  4732.   else
  4733.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4734. ***************
  4735. *** 10035,10041 ****
  4736.   fi
  4737.   
  4738.   ac_fn_c_check_type "$LINENO" "ino_t" "ac_cv_type_ino_t" "$ac_includes_default"
  4739. ! if test "x$ac_cv_type_ino_t" = x""yes; then :
  4740.   
  4741.   else
  4742.   
  4743. --- 10062,10068 ----
  4744.   fi
  4745.   
  4746.   ac_fn_c_check_type "$LINENO" "ino_t" "ac_cv_type_ino_t" "$ac_includes_default"
  4747. ! if test "x$ac_cv_type_ino_t" = xyes; then :
  4748.   
  4749.   else
  4750.   
  4751. ***************
  4752. *** 10046,10052 ****
  4753.   fi
  4754.   
  4755.   ac_fn_c_check_type "$LINENO" "dev_t" "ac_cv_type_dev_t" "$ac_includes_default"
  4756. ! if test "x$ac_cv_type_dev_t" = x""yes; then :
  4757.   
  4758.   else
  4759.   
  4760. --- 10073,10079 ----
  4761.   fi
  4762.   
  4763.   ac_fn_c_check_type "$LINENO" "dev_t" "ac_cv_type_dev_t" "$ac_includes_default"
  4764. ! if test "x$ac_cv_type_dev_t" = xyes; then :
  4765.   
  4766.   else
  4767.   
  4768. ***************
  4769. *** 10058,10064 ****
  4770.   
  4771.    { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
  4772.   $as_echo_n "checking whether byte ordering is bigendian... " >&6; }
  4773. ! if test "${ac_cv_c_bigendian+set}" = set; then :
  4774.     $as_echo_n "(cached) " >&6
  4775.   else
  4776.     ac_cv_c_bigendian=unknown
  4777. --- 10085,10091 ----
  4778.   
  4779.    { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
  4780.   $as_echo_n "checking whether byte ordering is bigendian... " >&6; }
  4781. ! if ${ac_cv_c_bigendian+:} false; then :
  4782.     $as_echo_n "(cached) " >&6
  4783.   else
  4784.     ac_cv_c_bigendian=unknown
  4785. ***************
  4786. *** 10276,10282 ****
  4787.   
  4788.        ;; #(
  4789.      *)
  4790. !      as_fn_error "unknown endianness
  4791.    presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;;
  4792.    esac
  4793.   
  4794. --- 10303,10309 ----
  4795.   
  4796.        ;; #(
  4797.      *)
  4798. !      as_fn_error $? "unknown endianness
  4799.    presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;;
  4800.    esac
  4801.   
  4802. ***************
  4803. *** 10412,10418 ****
  4804.     { $as_echo "$as_me:${as_lineno-$LINENO}: result: OK" >&5
  4805.   $as_echo "OK" >&6; }
  4806.   else
  4807. !   as_fn_error "FAILED" "$LINENO" 5
  4808.   fi
  4809.   rm -f core conftest.err conftest.$ac_objext \
  4810.       conftest$ac_exeext conftest.$ac_ext
  4811. --- 10439,10445 ----
  4812.     { $as_echo "$as_me:${as_lineno-$LINENO}: result: OK" >&5
  4813.   $as_echo "OK" >&6; }
  4814.   else
  4815. !   as_fn_error $? "FAILED" "$LINENO" 5
  4816.   fi
  4817.   rm -f core conftest.err conftest.$ac_objext \
  4818.       conftest$ac_exeext conftest.$ac_ext
  4819. ***************
  4820. *** 10428,10434 ****
  4821.       as_ac_Lib=`$as_echo "ac_cv_lib_${libname}''_tgetent" | $as_tr_sh`
  4822.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tgetent in -l${libname}" >&5
  4823.   $as_echo_n "checking for tgetent in -l${libname}... " >&6; }
  4824. ! if { as_var=$as_ac_Lib; eval "test \"\${$as_var+set}\" = set"; }; then :
  4825.     $as_echo_n "(cached) " >&6
  4826.   else
  4827.     ac_check_lib_save_LIBS=$LIBS
  4828. --- 10455,10461 ----
  4829.       as_ac_Lib=`$as_echo "ac_cv_lib_${libname}''_tgetent" | $as_tr_sh`
  4830.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tgetent in -l${libname}" >&5
  4831.   $as_echo_n "checking for tgetent in -l${libname}... " >&6; }
  4832. ! if eval \${$as_ac_Lib+:} false; then :
  4833.     $as_echo_n "(cached) " >&6
  4834.   else
  4835.     ac_check_lib_save_LIBS=$LIBS
  4836. ***************
  4837. *** 10463,10470 ****
  4838.   eval ac_res=\$$as_ac_Lib
  4839.              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  4840.   $as_echo "$ac_res" >&6; }
  4841. ! eval as_val=\$$as_ac_Lib
  4842. !    if test "x$as_val" = x""yes; then :
  4843.     cat >>confdefs.h <<_ACEOF
  4844.   #define `$as_echo "HAVE_LIB${libname}" | $as_tr_cpp` 1
  4845.   _ACEOF
  4846. --- 10490,10496 ----
  4847.   eval ac_res=\$$as_ac_Lib
  4848.              { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  4849.   $as_echo "$ac_res" >&6; }
  4850. ! if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
  4851.     cat >>confdefs.h <<_ACEOF
  4852.   #define `$as_echo "HAVE_LIB${libname}" | $as_tr_cpp` 1
  4853.   _ACEOF
  4854. ***************
  4855. *** 10530,10536 ****
  4856.     { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  4857.   $as_echo "yes" >&6; }
  4858.   else
  4859. !   as_fn_error "NOT FOUND!
  4860.         You need to install a terminal library; for example ncurses.
  4861.         Or specify the name of the library with --with-tlib." "$LINENO" 5
  4862.   fi
  4863. --- 10556,10562 ----
  4864.     { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  4865.   $as_echo "yes" >&6; }
  4866.   else
  4867. !   as_fn_error $? "NOT FOUND!
  4868.         You need to install a terminal library; for example ncurses.
  4869.         Or specify the name of the library with --with-tlib." "$LINENO" 5
  4870.   fi
  4871. ***************
  4872. *** 10540,10552 ****
  4873.   
  4874.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we talk terminfo" >&5
  4875.   $as_echo_n "checking whether we talk terminfo... " >&6; }
  4876. ! if test "${vim_cv_terminfo+set}" = set; then :
  4877.     $as_echo_n "(cached) " >&6
  4878.   else
  4879.   
  4880.       if test "$cross_compiling" = yes; then :
  4881.   
  4882. !       as_fn_error "cross-compiling: please set 'vim_cv_terminfo'" "$LINENO" 5
  4883.   
  4884.   else
  4885.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4886. --- 10566,10578 ----
  4887.   
  4888.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we talk terminfo" >&5
  4889.   $as_echo_n "checking whether we talk terminfo... " >&6; }
  4890. ! if ${vim_cv_terminfo+:} false; then :
  4891.     $as_echo_n "(cached) " >&6
  4892.   else
  4893.   
  4894.       if test "$cross_compiling" = yes; then :
  4895.   
  4896. !       as_fn_error $? "cross-compiling: please set 'vim_cv_terminfo'" "$LINENO" 5
  4897.   
  4898.   else
  4899.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4900. ***************
  4901. *** 10593,10605 ****
  4902.   if test "x$olibs" != "x$LIBS"; then
  4903.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking what tgetent() returns for an unknown terminal" >&5
  4904.   $as_echo_n "checking what tgetent() returns for an unknown terminal... " >&6; }
  4905. ! if test "${vim_cv_tgent+set}" = set; then :
  4906.     $as_echo_n "(cached) " >&6
  4907.   else
  4908.   
  4909.         if test "$cross_compiling" = yes; then :
  4910.   
  4911. !     as_fn_error "failed to compile test program." "$LINENO" 5
  4912.   
  4913.   else
  4914.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4915. --- 10619,10631 ----
  4916.   if test "x$olibs" != "x$LIBS"; then
  4917.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking what tgetent() returns for an unknown terminal" >&5
  4918.   $as_echo_n "checking what tgetent() returns for an unknown terminal... " >&6; }
  4919. ! if ${vim_cv_tgent+:} false; then :
  4920.     $as_echo_n "(cached) " >&6
  4921.   else
  4922.   
  4923.         if test "$cross_compiling" = yes; then :
  4924.   
  4925. !     as_fn_error $? "failed to compile test program." "$LINENO" 5
  4926.   
  4927.   else
  4928.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4929. ***************
  4930. *** 10894,10906 ****
  4931.   rm -f conftest_grp
  4932.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking default tty permissions/group" >&5
  4933.   $as_echo_n "checking default tty permissions/group... " >&6; }
  4934. ! if test "${vim_cv_tty_group+set}" = set; then :
  4935.     $as_echo_n "(cached) " >&6
  4936.   else
  4937.   
  4938.       if test "$cross_compiling" = yes; then :
  4939.   
  4940. !       as_fn_error "cross-compiling: please set 'vim_cv_tty_group' and 'vim_cv_tty_mode'" "$LINENO" 5
  4941.   
  4942.   else
  4943.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4944. --- 10920,10932 ----
  4945.   rm -f conftest_grp
  4946.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking default tty permissions/group" >&5
  4947.   $as_echo_n "checking default tty permissions/group... " >&6; }
  4948. ! if ${vim_cv_tty_group+:} false; then :
  4949.     $as_echo_n "(cached) " >&6
  4950.   else
  4951.   
  4952.       if test "$cross_compiling" = yes; then :
  4953.   
  4954. !       as_fn_error $? "cross-compiling: please set 'vim_cv_tty_group' and 'vim_cv_tty_mode'" "$LINENO" 5
  4955.   
  4956.   else
  4957.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4958. ***************
  4959. *** 10981,10987 ****
  4960.   _ACEOF
  4961.   
  4962.     if test "x$vim_cv_tty_mode" = "x" ; then
  4963. !     as_fn_error "It seems you're cross compiling and have 'vim_cv_tty_group' set, please also set the environment variable 'vim_cv_tty_mode' to the correct mode (probably 0620)" "$LINENO" 5
  4964.     else
  4965.       $as_echo "#define PTYMODE 0620" >>confdefs.h
  4966.   
  4967. --- 11007,11013 ----
  4968.   _ACEOF
  4969.   
  4970.     if test "x$vim_cv_tty_mode" = "x" ; then
  4971. !     as_fn_error $? "It seems you're cross compiling and have 'vim_cv_tty_group' set, please also set the environment variable 'vim_cv_tty_mode' to the correct mode (probably 0620)" "$LINENO" 5
  4972.     else
  4973.       $as_echo "#define PTYMODE 0620" >>confdefs.h
  4974.   
  4975. ***************
  4976. *** 10991,10997 ****
  4977.   
  4978.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5
  4979.   $as_echo_n "checking return type of signal handlers... " >&6; }
  4980. ! if test "${ac_cv_type_signal+set}" = set; then :
  4981.     $as_echo_n "(cached) " >&6
  4982.   else
  4983.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4984. --- 11017,11023 ----
  4985.   
  4986.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5
  4987.   $as_echo_n "checking return type of signal handlers... " >&6; }
  4988. ! if ${ac_cv_type_signal+:} false; then :
  4989.     $as_echo_n "(cached) " >&6
  4990.   else
  4991.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  4992. ***************
  4993. *** 11064,11076 ****
  4994.   
  4995.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking getcwd implementation is broken" >&5
  4996.   $as_echo_n "checking getcwd implementation is broken... " >&6; }
  4997. ! if test "${vim_cv_getcwd_broken+set}" = set; then :
  4998.     $as_echo_n "(cached) " >&6
  4999.   else
  5000.   
  5001.       if test "$cross_compiling" = yes; then :
  5002.   
  5003. !       as_fn_error "cross-compiling: please set 'vim_cv_getcwd_broken'" "$LINENO" 5
  5004.   
  5005.   else
  5006.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  5007. --- 11090,11102 ----
  5008.   
  5009.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking getcwd implementation is broken" >&5
  5010.   $as_echo_n "checking getcwd implementation is broken... " >&6; }
  5011. ! if ${vim_cv_getcwd_broken+:} false; then :
  5012.     $as_echo_n "(cached) " >&6
  5013.   else
  5014.   
  5015.       if test "$cross_compiling" = yes; then :
  5016.   
  5017. !       as_fn_error $? "cross-compiling: please set 'vim_cv_getcwd_broken'" "$LINENO" 5
  5018.   
  5019.   else
  5020.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  5021. ***************
  5022. *** 11123,11130 ****
  5023.   do :
  5024.     as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
  5025.   ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
  5026. ! eval as_val=\$$as_ac_var
  5027. !    if test "x$as_val" = x""yes; then :
  5028.     cat >>confdefs.h <<_ACEOF
  5029.   #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
  5030.   _ACEOF
  5031. --- 11149,11155 ----
  5032.   do :
  5033.     as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
  5034.   ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
  5035. ! if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
  5036.     cat >>confdefs.h <<_ACEOF
  5037.   #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
  5038.   _ACEOF
  5039. ***************
  5040. *** 11134,11140 ****
  5041.   
  5042.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGEFILE_SOURCE value needed for large files" >&5
  5043.   $as_echo_n "checking for _LARGEFILE_SOURCE value needed for large files... " >&6; }
  5044. ! if test "${ac_cv_sys_largefile_source+set}" = set; then :
  5045.     $as_echo_n "(cached) " >&6
  5046.   else
  5047.     while :; do
  5048. --- 11159,11165 ----
  5049.   
  5050.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGEFILE_SOURCE value needed for large files" >&5
  5051.   $as_echo_n "checking for _LARGEFILE_SOURCE value needed for large files... " >&6; }
  5052. ! if ${ac_cv_sys_largefile_source+:} false; then :
  5053.     $as_echo_n "(cached) " >&6
  5054.   else
  5055.     while :; do
  5056. ***************
  5057. *** 11210,11216 ****
  5058.   
  5059.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5
  5060.   $as_echo_n "checking for special C compiler options needed for large files... " >&6; }
  5061. ! if test "${ac_cv_sys_largefile_CC+set}" = set; then :
  5062.     $as_echo_n "(cached) " >&6
  5063.   else
  5064.     ac_cv_sys_largefile_CC=no
  5065. --- 11235,11241 ----
  5066.   
  5067.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5
  5068.   $as_echo_n "checking for special C compiler options needed for large files... " >&6; }
  5069. ! if ${ac_cv_sys_largefile_CC+:} false; then :
  5070.     $as_echo_n "(cached) " >&6
  5071.   else
  5072.     ac_cv_sys_largefile_CC=no
  5073. ***************
  5074. *** 11261,11267 ****
  5075.   
  5076.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5
  5077.   $as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; }
  5078. ! if test "${ac_cv_sys_file_offset_bits+set}" = set; then :
  5079.     $as_echo_n "(cached) " >&6
  5080.   else
  5081.     while :; do
  5082. --- 11286,11292 ----
  5083.   
  5084.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5
  5085.   $as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; }
  5086. ! if ${ac_cv_sys_file_offset_bits+:} false; then :
  5087.     $as_echo_n "(cached) " >&6
  5088.   else
  5089.     while :; do
  5090. ***************
  5091. *** 11330,11336 ****
  5092.     if test $ac_cv_sys_file_offset_bits = unknown; then
  5093.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5
  5094.   $as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; }
  5095. ! if test "${ac_cv_sys_large_files+set}" = set; then :
  5096.     $as_echo_n "(cached) " >&6
  5097.   else
  5098.     while :; do
  5099. --- 11355,11361 ----
  5100.     if test $ac_cv_sys_file_offset_bits = unknown; then
  5101.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5
  5102.   $as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; }
  5103. ! if ${ac_cv_sys_large_files+:} false; then :
  5104.     $as_echo_n "(cached) " >&6
  5105.   else
  5106.     while :; do
  5107. ***************
  5108. *** 11397,11402 ****
  5109. --- 11422,11429 ----
  5110.   esac
  5111.   rm -rf conftest*
  5112.     fi
  5113.   fi
  5114.   
  5115.   
  5116. ***************
  5117. *** 11430,11442 ****
  5118.   
  5119.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat() ignores a trailing slash" >&5
  5120.   $as_echo_n "checking whether stat() ignores a trailing slash... " >&6; }
  5121. ! if test "${vim_cv_stat_ignores_slash+set}" = set; then :
  5122.     $as_echo_n "(cached) " >&6
  5123.   else
  5124.   
  5125.       if test "$cross_compiling" = yes; then :
  5126.   
  5127. !       as_fn_error "cross-compiling: please set 'vim_cv_stat_ignores_slash'" "$LINENO" 5
  5128.   
  5129.   else
  5130.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  5131. --- 11457,11469 ----
  5132.   
  5133.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat() ignores a trailing slash" >&5
  5134.   $as_echo_n "checking whether stat() ignores a trailing slash... " >&6; }
  5135. ! if ${vim_cv_stat_ignores_slash+:} false; then :
  5136.     $as_echo_n "(cached) " >&6
  5137.   else
  5138.   
  5139.       if test "$cross_compiling" = yes; then :
  5140.   
  5141. !       as_fn_error $? "cross-compiling: please set 'vim_cv_stat_ignores_slash'" "$LINENO" 5
  5142.   
  5143.   else
  5144.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  5145. ***************
  5146. *** 11560,11566 ****
  5147.   
  5148.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtod in -lm" >&5
  5149.   $as_echo_n "checking for strtod in -lm... " >&6; }
  5150. ! if test "${ac_cv_lib_m_strtod+set}" = set; then :
  5151.     $as_echo_n "(cached) " >&6
  5152.   else
  5153.     ac_check_lib_save_LIBS=$LIBS
  5154. --- 11587,11593 ----
  5155.   
  5156.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strtod in -lm" >&5
  5157.   $as_echo_n "checking for strtod in -lm... " >&6; }
  5158. ! if ${ac_cv_lib_m_strtod+:} false; then :
  5159.     $as_echo_n "(cached) " >&6
  5160.   else
  5161.     ac_check_lib_save_LIBS=$LIBS
  5162. ***************
  5163. *** 11594,11600 ****
  5164.   fi
  5165.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_strtod" >&5
  5166.   $as_echo "$ac_cv_lib_m_strtod" >&6; }
  5167. ! if test "x$ac_cv_lib_m_strtod" = x""yes; then :
  5168.     cat >>confdefs.h <<_ACEOF
  5169.   #define HAVE_LIBM 1
  5170.   _ACEOF
  5171. --- 11621,11627 ----
  5172.   fi
  5173.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_strtod" >&5
  5174.   $as_echo "$ac_cv_lib_m_strtod" >&6; }
  5175. ! if test "x$ac_cv_lib_m_strtod" = xyes; then :
  5176.     cat >>confdefs.h <<_ACEOF
  5177.   #define HAVE_LIBM 1
  5178.   _ACEOF
  5179. ***************
  5180. *** 11660,11666 ****
  5181.   $as_echo "no" >&6; }
  5182.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for acl_get_file in -lposix1e" >&5
  5183.   $as_echo_n "checking for acl_get_file in -lposix1e... " >&6; }
  5184. ! if test "${ac_cv_lib_posix1e_acl_get_file+set}" = set; then :
  5185.     $as_echo_n "(cached) " >&6
  5186.   else
  5187.     ac_check_lib_save_LIBS=$LIBS
  5188. --- 11687,11693 ----
  5189.   $as_echo "no" >&6; }
  5190.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for acl_get_file in -lposix1e" >&5
  5191.   $as_echo_n "checking for acl_get_file in -lposix1e... " >&6; }
  5192. ! if ${ac_cv_lib_posix1e_acl_get_file+:} false; then :
  5193.     $as_echo_n "(cached) " >&6
  5194.   else
  5195.     ac_check_lib_save_LIBS=$LIBS
  5196. ***************
  5197. *** 11694,11705 ****
  5198.   fi
  5199.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix1e_acl_get_file" >&5
  5200.   $as_echo "$ac_cv_lib_posix1e_acl_get_file" >&6; }
  5201. ! if test "x$ac_cv_lib_posix1e_acl_get_file" = x""yes; then :
  5202.     LIBS="$LIBS -lposix1e"
  5203.   else
  5204.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for acl_get_file in -lacl" >&5
  5205.   $as_echo_n "checking for acl_get_file in -lacl... " >&6; }
  5206. ! if test "${ac_cv_lib_acl_acl_get_file+set}" = set; then :
  5207.     $as_echo_n "(cached) " >&6
  5208.   else
  5209.     ac_check_lib_save_LIBS=$LIBS
  5210. --- 11721,11732 ----
  5211.   fi
  5212.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix1e_acl_get_file" >&5
  5213.   $as_echo "$ac_cv_lib_posix1e_acl_get_file" >&6; }
  5214. ! if test "x$ac_cv_lib_posix1e_acl_get_file" = xyes; then :
  5215.     LIBS="$LIBS -lposix1e"
  5216.   else
  5217.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for acl_get_file in -lacl" >&5
  5218.   $as_echo_n "checking for acl_get_file in -lacl... " >&6; }
  5219. ! if ${ac_cv_lib_acl_acl_get_file+:} false; then :
  5220.     $as_echo_n "(cached) " >&6
  5221.   else
  5222.     ac_check_lib_save_LIBS=$LIBS
  5223. ***************
  5224. *** 11733,11743 ****
  5225.   fi
  5226.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_acl_acl_get_file" >&5
  5227.   $as_echo "$ac_cv_lib_acl_acl_get_file" >&6; }
  5228. ! if test "x$ac_cv_lib_acl_acl_get_file" = x""yes; then :
  5229.     LIBS="$LIBS -lacl"
  5230.             { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgetxattr in -lattr" >&5
  5231.   $as_echo_n "checking for fgetxattr in -lattr... " >&6; }
  5232. ! if test "${ac_cv_lib_attr_fgetxattr+set}" = set; then :
  5233.     $as_echo_n "(cached) " >&6
  5234.   else
  5235.     ac_check_lib_save_LIBS=$LIBS
  5236. --- 11760,11770 ----
  5237.   fi
  5238.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_acl_acl_get_file" >&5
  5239.   $as_echo "$ac_cv_lib_acl_acl_get_file" >&6; }
  5240. ! if test "x$ac_cv_lib_acl_acl_get_file" = xyes; then :
  5241.     LIBS="$LIBS -lacl"
  5242.             { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgetxattr in -lattr" >&5
  5243.   $as_echo_n "checking for fgetxattr in -lattr... " >&6; }
  5244. ! if ${ac_cv_lib_attr_fgetxattr+:} false; then :
  5245.     $as_echo_n "(cached) " >&6
  5246.   else
  5247.     ac_check_lib_save_LIBS=$LIBS
  5248. ***************
  5249. *** 11771,11777 ****
  5250.   fi
  5251.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_attr_fgetxattr" >&5
  5252.   $as_echo "$ac_cv_lib_attr_fgetxattr" >&6; }
  5253. ! if test "x$ac_cv_lib_attr_fgetxattr" = x""yes; then :
  5254.     LIBS="$LIBS -lattr"
  5255.   fi
  5256.   
  5257. --- 11798,11804 ----
  5258.   fi
  5259.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_attr_fgetxattr" >&5
  5260.   $as_echo "$ac_cv_lib_attr_fgetxattr" >&6; }
  5261. ! if test "x$ac_cv_lib_attr_fgetxattr" = xyes; then :
  5262.     LIBS="$LIBS -lattr"
  5263.   fi
  5264.   
  5265. ***************
  5266. *** 11813,11819 ****
  5267.   
  5268.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for acl_get in -lsec" >&5
  5269.   $as_echo_n "checking for acl_get in -lsec... " >&6; }
  5270. ! if test "${ac_cv_lib_sec_acl_get+set}" = set; then :
  5271.     $as_echo_n "(cached) " >&6
  5272.   else
  5273.     ac_check_lib_save_LIBS=$LIBS
  5274. --- 11840,11846 ----
  5275.   
  5276.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for acl_get in -lsec" >&5
  5277.   $as_echo_n "checking for acl_get in -lsec... " >&6; }
  5278. ! if ${ac_cv_lib_sec_acl_get+:} false; then :
  5279.     $as_echo_n "(cached) " >&6
  5280.   else
  5281.     ac_check_lib_save_LIBS=$LIBS
  5282. ***************
  5283. *** 11847,11853 ****
  5284.   fi
  5285.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sec_acl_get" >&5
  5286.   $as_echo "$ac_cv_lib_sec_acl_get" >&6; }
  5287. ! if test "x$ac_cv_lib_sec_acl_get" = x""yes; then :
  5288.     LIBS="$LIBS -lsec"; $as_echo "#define HAVE_SOLARIS_ZFS_ACL 1" >>confdefs.h
  5289.   
  5290.   else
  5291. --- 11874,11880 ----
  5292.   fi
  5293.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sec_acl_get" >&5
  5294.   $as_echo "$ac_cv_lib_sec_acl_get" >&6; }
  5295. ! if test "x$ac_cv_lib_sec_acl_get" = xyes; then :
  5296.     LIBS="$LIBS -lsec"; $as_echo "#define HAVE_SOLARIS_ZFS_ACL 1" >>confdefs.h
  5297.   
  5298.   else
  5299. ***************
  5300. *** 11943,11949 ****
  5301.   $as_echo "no" >&6; }
  5302.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gpm" >&5
  5303.   $as_echo_n "checking for gpm... " >&6; }
  5304. ! if test "${vi_cv_have_gpm+set}" = set; then :
  5305.     $as_echo_n "(cached) " >&6
  5306.   else
  5307.     olibs="$LIBS" ; LIBS="-lgpm"
  5308. --- 11970,11976 ----
  5309.   $as_echo "no" >&6; }
  5310.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gpm" >&5
  5311.   $as_echo_n "checking for gpm... " >&6; }
  5312. ! if ${vi_cv_have_gpm+:} false; then :
  5313.     $as_echo_n "(cached) " >&6
  5314.   else
  5315.     olibs="$LIBS" ; LIBS="-lgpm"
  5316. ***************
  5317. *** 11996,12002 ****
  5318.   $as_echo "no" >&6; }
  5319.           { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysmouse" >&5
  5320.   $as_echo_n "checking for sysmouse... " >&6; }
  5321. ! if test "${vi_cv_have_sysmouse+set}" = set; then :
  5322.     $as_echo_n "(cached) " >&6
  5323.   else
  5324.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  5325. --- 12023,12029 ----
  5326.   $as_echo "no" >&6; }
  5327.           { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysmouse" >&5
  5328.   $as_echo_n "checking for sysmouse... " >&6; }
  5329. ! if ${vi_cv_have_sysmouse+:} false; then :
  5330.     $as_echo_n "(cached) " >&6
  5331.   else
  5332.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  5333. ***************
  5334. *** 12202,12208 ****
  5335.   # This bug is HP SR number 8606223364.
  5336.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int" >&5
  5337.   $as_echo_n "checking size of int... " >&6; }
  5338. ! if test "${ac_cv_sizeof_int+set}" = set; then :
  5339.     $as_echo_n "(cached) " >&6
  5340.   else
  5341.     if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int))" "ac_cv_sizeof_int"        "$ac_includes_default"; then :
  5342. --- 12229,12235 ----
  5343.   # This bug is HP SR number 8606223364.
  5344.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int" >&5
  5345.   $as_echo_n "checking size of int... " >&6; }
  5346. ! if ${ac_cv_sizeof_int+:} false; then :
  5347.     $as_echo_n "(cached) " >&6
  5348.   else
  5349.     if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int))" "ac_cv_sizeof_int"        "$ac_includes_default"; then :
  5350. ***************
  5351. *** 12211,12219 ****
  5352.     if test "$ac_cv_type_int" = yes; then
  5353.        { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  5354.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  5355. ! { as_fn_set_status 77
  5356. ! as_fn_error "cannot compute sizeof (int)
  5357. ! See \`config.log' for more details." "$LINENO" 5; }; }
  5358.      else
  5359.        ac_cv_sizeof_int=0
  5360.      fi
  5361. --- 12238,12245 ----
  5362.     if test "$ac_cv_type_int" = yes; then
  5363.        { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  5364.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  5365. ! as_fn_error 77 "cannot compute sizeof (int)
  5366. ! See \`config.log' for more details" "$LINENO" 5; }
  5367.      else
  5368.        ac_cv_sizeof_int=0
  5369.      fi
  5370. ***************
  5371. *** 12236,12242 ****
  5372.   # This bug is HP SR number 8606223364.
  5373.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5
  5374.   $as_echo_n "checking size of long... " >&6; }
  5375. ! if test "${ac_cv_sizeof_long+set}" = set; then :
  5376.     $as_echo_n "(cached) " >&6
  5377.   else
  5378.     if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long"        "$ac_includes_default"; then :
  5379. --- 12262,12268 ----
  5380.   # This bug is HP SR number 8606223364.
  5381.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5
  5382.   $as_echo_n "checking size of long... " >&6; }
  5383. ! if ${ac_cv_sizeof_long+:} false; then :
  5384.     $as_echo_n "(cached) " >&6
  5385.   else
  5386.     if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long"        "$ac_includes_default"; then :
  5387. ***************
  5388. *** 12245,12253 ****
  5389.     if test "$ac_cv_type_long" = yes; then
  5390.        { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  5391.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  5392. ! { as_fn_set_status 77
  5393. ! as_fn_error "cannot compute sizeof (long)
  5394. ! See \`config.log' for more details." "$LINENO" 5; }; }
  5395.      else
  5396.        ac_cv_sizeof_long=0
  5397.      fi
  5398. --- 12271,12278 ----
  5399.     if test "$ac_cv_type_long" = yes; then
  5400.        { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  5401.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  5402. ! as_fn_error 77 "cannot compute sizeof (long)
  5403. ! See \`config.log' for more details" "$LINENO" 5; }
  5404.      else
  5405.        ac_cv_sizeof_long=0
  5406.      fi
  5407. ***************
  5408. *** 12270,12276 ****
  5409.   # This bug is HP SR number 8606223364.
  5410.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of time_t" >&5
  5411.   $as_echo_n "checking size of time_t... " >&6; }
  5412. ! if test "${ac_cv_sizeof_time_t+set}" = set; then :
  5413.     $as_echo_n "(cached) " >&6
  5414.   else
  5415.     if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (time_t))" "ac_cv_sizeof_time_t"        "$ac_includes_default"; then :
  5416. --- 12295,12301 ----
  5417.   # This bug is HP SR number 8606223364.
  5418.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of time_t" >&5
  5419.   $as_echo_n "checking size of time_t... " >&6; }
  5420. ! if ${ac_cv_sizeof_time_t+:} false; then :
  5421.     $as_echo_n "(cached) " >&6
  5422.   else
  5423.     if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (time_t))" "ac_cv_sizeof_time_t"        "$ac_includes_default"; then :
  5424. ***************
  5425. *** 12279,12287 ****
  5426.     if test "$ac_cv_type_time_t" = yes; then
  5427.        { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  5428.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  5429. ! { as_fn_set_status 77
  5430. ! as_fn_error "cannot compute sizeof (time_t)
  5431. ! See \`config.log' for more details." "$LINENO" 5; }; }
  5432.      else
  5433.        ac_cv_sizeof_time_t=0
  5434.      fi
  5435. --- 12304,12311 ----
  5436.     if test "$ac_cv_type_time_t" = yes; then
  5437.        { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  5438.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  5439. ! as_fn_error 77 "cannot compute sizeof (time_t)
  5440. ! See \`config.log' for more details" "$LINENO" 5; }
  5441.      else
  5442.        ac_cv_sizeof_time_t=0
  5443.      fi
  5444. ***************
  5445. *** 12304,12310 ****
  5446.   # This bug is HP SR number 8606223364.
  5447.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of off_t" >&5
  5448.   $as_echo_n "checking size of off_t... " >&6; }
  5449. ! if test "${ac_cv_sizeof_off_t+set}" = set; then :
  5450.     $as_echo_n "(cached) " >&6
  5451.   else
  5452.     if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (off_t))" "ac_cv_sizeof_off_t"        "$ac_includes_default"; then :
  5453. --- 12328,12334 ----
  5454.   # This bug is HP SR number 8606223364.
  5455.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of off_t" >&5
  5456.   $as_echo_n "checking size of off_t... " >&6; }
  5457. ! if ${ac_cv_sizeof_off_t+:} false; then :
  5458.     $as_echo_n "(cached) " >&6
  5459.   else
  5460.     if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (off_t))" "ac_cv_sizeof_off_t"        "$ac_includes_default"; then :
  5461. ***************
  5462. *** 12313,12321 ****
  5463.     if test "$ac_cv_type_off_t" = yes; then
  5464.        { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  5465.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  5466. ! { as_fn_set_status 77
  5467. ! as_fn_error "cannot compute sizeof (off_t)
  5468. ! See \`config.log' for more details." "$LINENO" 5; }; }
  5469.      else
  5470.        ac_cv_sizeof_off_t=0
  5471.      fi
  5472. --- 12337,12344 ----
  5473.     if test "$ac_cv_type_off_t" = yes; then
  5474.        { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  5475.   $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  5476. ! as_fn_error 77 "cannot compute sizeof (off_t)
  5477. ! See \`config.log' for more details" "$LINENO" 5; }
  5478.      else
  5479.        ac_cv_sizeof_off_t=0
  5480.      fi
  5481. ***************
  5482. *** 12368,12374 ****
  5483.     { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
  5484.   $as_echo "ok" >&6; }
  5485.   else
  5486. !   as_fn_error "WRONG!  uint32_t not defined correctly." "$LINENO" 5
  5487.   fi
  5488.   rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  5489.     conftest.$ac_objext conftest.beam conftest.$ac_ext
  5490. --- 12391,12397 ----
  5491.     { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
  5492.   $as_echo "ok" >&6; }
  5493.   else
  5494. !   as_fn_error $? "WRONG!  uint32_t not defined correctly." "$LINENO" 5
  5495.   fi
  5496.   rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  5497.     conftest.$ac_objext conftest.beam conftest.$ac_ext
  5498. ***************
  5499. *** 12400,12412 ****
  5500.   
  5501.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether memmove handles overlaps" >&5
  5502.   $as_echo_n "checking whether memmove handles overlaps... " >&6; }
  5503. ! if test "${vim_cv_memmove_handles_overlap+set}" = set; then :
  5504.     $as_echo_n "(cached) " >&6
  5505.   else
  5506.   
  5507.       if test "$cross_compiling" = yes; then :
  5508.   
  5509. !     as_fn_error "cross-compiling: please set 'vim_cv_memmove_handles_overlap'" "$LINENO" 5
  5510.   
  5511.   else
  5512.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  5513. --- 12423,12435 ----
  5514.   
  5515.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether memmove handles overlaps" >&5
  5516.   $as_echo_n "checking whether memmove handles overlaps... " >&6; }
  5517. ! if ${vim_cv_memmove_handles_overlap+:} false; then :
  5518.     $as_echo_n "(cached) " >&6
  5519.   else
  5520.   
  5521.       if test "$cross_compiling" = yes; then :
  5522.   
  5523. !     as_fn_error $? "cross-compiling: please set 'vim_cv_memmove_handles_overlap'" "$LINENO" 5
  5524.   
  5525.   else
  5526.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  5527. ***************
  5528. *** 12437,12449 ****
  5529.   else
  5530.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether bcopy handles overlaps" >&5
  5531.   $as_echo_n "checking whether bcopy handles overlaps... " >&6; }
  5532. ! if test "${vim_cv_bcopy_handles_overlap+set}" = set; then :
  5533.     $as_echo_n "(cached) " >&6
  5534.   else
  5535.   
  5536.         if test "$cross_compiling" = yes; then :
  5537.   
  5538. !     as_fn_error "cross-compiling: please set 'vim_cv_bcopy_handles_overlap'" "$LINENO" 5
  5539.   
  5540.   else
  5541.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  5542. --- 12460,12472 ----
  5543.   else
  5544.     { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether bcopy handles overlaps" >&5
  5545.   $as_echo_n "checking whether bcopy handles overlaps... " >&6; }
  5546. ! if ${vim_cv_bcopy_handles_overlap+:} false; then :
  5547.     $as_echo_n "(cached) " >&6
  5548.   else
  5549.   
  5550.         if test "$cross_compiling" = yes; then :
  5551.   
  5552. !     as_fn_error $? "cross-compiling: please set 'vim_cv_bcopy_handles_overlap'" "$LINENO" 5
  5553.   
  5554.   else
  5555.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  5556. ***************
  5557. *** 12474,12486 ****
  5558.     else
  5559.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether memcpy handles overlaps" >&5
  5560.   $as_echo_n "checking whether memcpy handles overlaps... " >&6; }
  5561. ! if test "${vim_cv_memcpy_handles_overlap+set}" = set; then :
  5562.     $as_echo_n "(cached) " >&6
  5563.   else
  5564.   
  5565.       if test "$cross_compiling" = yes; then :
  5566.   
  5567. !         as_fn_error "cross-compiling: please set 'vim_cv_memcpy_handles_overlap'" "$LINENO" 5
  5568.   
  5569.   else
  5570.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  5571. --- 12497,12509 ----
  5572.     else
  5573.       { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether memcpy handles overlaps" >&5
  5574.   $as_echo_n "checking whether memcpy handles overlaps... " >&6; }
  5575. ! if ${vim_cv_memcpy_handles_overlap+:} false; then :
  5576.     $as_echo_n "(cached) " >&6
  5577.   else
  5578.   
  5579.       if test "$cross_compiling" = yes; then :
  5580.   
  5581. !         as_fn_error $? "cross-compiling: please set 'vim_cv_memcpy_handles_overlap'" "$LINENO" 5
  5582.   
  5583.   else
  5584.     cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  5585. ***************
  5586. *** 12575,12581 ****
  5587.   
  5588.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _xpg4_setrunelocale in -lxpg4" >&5
  5589.   $as_echo_n "checking for _xpg4_setrunelocale in -lxpg4... " >&6; }
  5590. ! if test "${ac_cv_lib_xpg4__xpg4_setrunelocale+set}" = set; then :
  5591.     $as_echo_n "(cached) " >&6
  5592.   else
  5593.     ac_check_lib_save_LIBS=$LIBS
  5594. --- 12598,12604 ----
  5595.   
  5596.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _xpg4_setrunelocale in -lxpg4" >&5
  5597.   $as_echo_n "checking for _xpg4_setrunelocale in -lxpg4... " >&6; }
  5598. ! if ${ac_cv_lib_xpg4__xpg4_setrunelocale+:} false; then :
  5599.     $as_echo_n "(cached) " >&6
  5600.   else
  5601.     ac_check_lib_save_LIBS=$LIBS
  5602. ***************
  5603. *** 12609,12615 ****
  5604.   fi
  5605.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xpg4__xpg4_setrunelocale" >&5
  5606.   $as_echo "$ac_cv_lib_xpg4__xpg4_setrunelocale" >&6; }
  5607. ! if test "x$ac_cv_lib_xpg4__xpg4_setrunelocale" = x""yes; then :
  5608.     LIBS="$LIBS -lxpg4"
  5609.   fi
  5610.   
  5611. --- 12632,12638 ----
  5612.   fi
  5613.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xpg4__xpg4_setrunelocale" >&5
  5614.   $as_echo "$ac_cv_lib_xpg4__xpg4_setrunelocale" >&6; }
  5615. ! if test "x$ac_cv_lib_xpg4__xpg4_setrunelocale" = xyes; then :
  5616.     LIBS="$LIBS -lxpg4"
  5617.   fi
  5618.   
  5619. ***************
  5620. *** 12671,12677 ****
  5621.   set dummy msgfmt; ac_word=$2
  5622.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  5623.   $as_echo_n "checking for $ac_word... " >&6; }
  5624. ! if test "${ac_cv_prog_MSGFMT+set}" = set; then :
  5625.     $as_echo_n "(cached) " >&6
  5626.   else
  5627.     if test -n "$MSGFMT"; then
  5628. --- 12694,12700 ----
  5629.   set dummy msgfmt; ac_word=$2
  5630.   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  5631.   $as_echo_n "checking for $ac_word... " >&6; }
  5632. ! if ${ac_cv_prog_MSGFMT+:} false; then :
  5633.     $as_echo_n "(cached) " >&6
  5634.   else
  5635.     if test -n "$MSGFMT"; then
  5636. ***************
  5637. *** 12683,12689 ****
  5638.     IFS=$as_save_IFS
  5639.     test -z "$as_dir" && as_dir=.
  5640.       for ac_exec_ext in '' $ac_executable_extensions; do
  5641. !   if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  5642.       ac_cv_prog_MSGFMT="msgfmt"
  5643.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  5644.       break 2
  5645. --- 12706,12712 ----
  5646.     IFS=$as_save_IFS
  5647.     test -z "$as_dir" && as_dir=.
  5648.       for ac_exec_ext in '' $ac_executable_extensions; do
  5649. !   if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
  5650.       ac_cv_prog_MSGFMT="msgfmt"
  5651.       $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  5652.       break 2
  5653. ***************
  5654. *** 12764,12770 ****
  5655.               for ac_func in bind_textdomain_codeset
  5656.   do :
  5657.     ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset"
  5658. ! if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then :
  5659.     cat >>confdefs.h <<_ACEOF
  5660.   #define HAVE_BIND_TEXTDOMAIN_CODESET 1
  5661.   _ACEOF
  5662. --- 12787,12793 ----
  5663.               for ac_func in bind_textdomain_codeset
  5664.   do :
  5665.     ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset"
  5666. ! if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then :
  5667.     cat >>confdefs.h <<_ACEOF
  5668.   #define HAVE_BIND_TEXTDOMAIN_CODESET 1
  5669.   _ACEOF
  5670. ***************
  5671. *** 12807,12817 ****
  5672.   fi
  5673.   
  5674.   ac_fn_c_check_header_mongrel "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default"
  5675. ! if test "x$ac_cv_header_dlfcn_h" = x""yes; then :
  5676.     DLL=dlfcn.h
  5677.   else
  5678.     ac_fn_c_check_header_mongrel "$LINENO" "dl.h" "ac_cv_header_dl_h" "$ac_includes_default"
  5679. ! if test "x$ac_cv_header_dl_h" = x""yes; then :
  5680.     DLL=dl.h
  5681.   fi
  5682.   
  5683. --- 12830,12840 ----
  5684.   fi
  5685.   
  5686.   ac_fn_c_check_header_mongrel "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default"
  5687. ! if test "x$ac_cv_header_dlfcn_h" = xyes; then :
  5688.     DLL=dlfcn.h
  5689.   else
  5690.     ac_fn_c_check_header_mongrel "$LINENO" "dl.h" "ac_cv_header_dl_h" "$ac_includes_default"
  5691. ! if test "x$ac_cv_header_dl_h" = xyes; then :
  5692.     DLL=dl.h
  5693.   fi
  5694.   
  5695. ***************
  5696. *** 13008,13014 ****
  5697.   for ac_header in setjmp.h
  5698.   do :
  5699.     ac_fn_c_check_header_mongrel "$LINENO" "setjmp.h" "ac_cv_header_setjmp_h" "$ac_includes_default"
  5700. ! if test "x$ac_cv_header_setjmp_h" = x""yes; then :
  5701.     cat >>confdefs.h <<_ACEOF
  5702.   #define HAVE_SETJMP_H 1
  5703.   _ACEOF
  5704. --- 13031,13037 ----
  5705.   for ac_header in setjmp.h
  5706.   do :
  5707.     ac_fn_c_check_header_mongrel "$LINENO" "setjmp.h" "ac_cv_header_setjmp_h" "$ac_includes_default"
  5708. ! if test "x$ac_cv_header_setjmp_h" = xyes; then :
  5709.     cat >>confdefs.h <<_ACEOF
  5710.   #define HAVE_SETJMP_H 1
  5711.   _ACEOF
  5712. ***************
  5713. *** 13159,13168 ****
  5714.        :end' >>confcache
  5715.   if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
  5716.     if test -w "$cache_file"; then
  5717. !     test "x$cache_file" != "x/dev/null" &&
  5718.         { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
  5719.   $as_echo "$as_me: updating cache $cache_file" >&6;}
  5720. !     cat confcache >$cache_file
  5721.     else
  5722.       { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
  5723.   $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
  5724. --- 13182,13202 ----
  5725.        :end' >>confcache
  5726.   if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
  5727.     if test -w "$cache_file"; then
  5728. !     if test "x$cache_file" != "x/dev/null"; then
  5729.         { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
  5730.   $as_echo "$as_me: updating cache $cache_file" >&6;}
  5731. !       if test ! -f "$cache_file" || test -h "$cache_file"; then
  5732. !     cat confcache >"$cache_file"
  5733. !       else
  5734. !         case $cache_file in #(
  5735. !         */* | ?:*)
  5736. !       mv -f confcache "$cache_file"$$ &&
  5737. !       mv -f "$cache_file"$$ "$cache_file" ;; #(
  5738. !         *)
  5739. !       mv -f confcache "$cache_file" ;;
  5740. !     esac
  5741. !       fi
  5742. !     fi
  5743.     else
  5744.       { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
  5745.   $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
  5746. ***************
  5747. *** 13178,13183 ****
  5748. --- 13212,13218 ----
  5749.   
  5750.   ac_libobjs=
  5751.   ac_ltlibobjs=
  5752. + U=
  5753.   for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
  5754.     # 1. Remove the extension, and $U if already installed.
  5755.     ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
  5756. ***************
  5757. *** 13194,13200 ****
  5758.   
  5759.   
  5760.   
  5761. ! : ${CONFIG_STATUS=./config.status}
  5762.   ac_write_fail=0
  5763.   ac_clean_files_save=$ac_clean_files
  5764.   ac_clean_files="$ac_clean_files $CONFIG_STATUS"
  5765. --- 13229,13235 ----
  5766.   
  5767.   
  5768.   
  5769. ! : "${CONFIG_STATUS=./config.status}"
  5770.   ac_write_fail=0
  5771.   ac_clean_files_save=$ac_clean_files
  5772.   ac_clean_files="$ac_clean_files $CONFIG_STATUS"
  5773. ***************
  5774. *** 13295,13300 ****
  5775. --- 13330,13336 ----
  5776.   IFS=" ""    $as_nl"
  5777.   
  5778.   # Find who we are.  Look in the path if we contain no directory separator.
  5779. + as_myself=
  5780.   case $0 in #((
  5781.     *[\\/]* ) as_myself=$0 ;;
  5782.     *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  5783. ***************
  5784. *** 13340,13358 ****
  5785.   (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  5786.   
  5787.   
  5788. ! # as_fn_error ERROR [LINENO LOG_FD]
  5789. ! # ---------------------------------
  5790.   # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
  5791.   # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
  5792. ! # script with status $?, using 1 if that was 0.
  5793.   as_fn_error ()
  5794.   {
  5795. !   as_status=$?; test $as_status -eq 0 && as_status=1
  5796. !   if test "$3"; then
  5797. !     as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  5798. !     $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
  5799.     fi
  5800. !   $as_echo "$as_me: error: $1" >&2
  5801.     as_fn_exit $as_status
  5802.   } # as_fn_error
  5803.   
  5804. --- 13376,13394 ----
  5805.   (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  5806.   
  5807.   
  5808. ! # as_fn_error STATUS ERROR [LINENO LOG_FD]
  5809. ! # ----------------------------------------
  5810.   # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
  5811.   # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
  5812. ! # script with STATUS, using 1 if that was 0.
  5813.   as_fn_error ()
  5814.   {
  5815. !   as_status=$1; test $as_status -eq 0 && as_status=1
  5816. !   if test "$4"; then
  5817. !     as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  5818. !     $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
  5819.     fi
  5820. !   $as_echo "$as_me: error: $2" >&2
  5821.     as_fn_exit $as_status
  5822.   } # as_fn_error
  5823.   
  5824. ***************
  5825. *** 13490,13505 ****
  5826.       # ... but there are two gotchas:
  5827.       # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
  5828.       # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
  5829. !     # In both cases, we have to default to `cp -p'.
  5830.       ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  5831. !       as_ln_s='cp -p'
  5832.     elif ln conf$$.file conf$$ 2>/dev/null; then
  5833.       as_ln_s=ln
  5834.     else
  5835. !     as_ln_s='cp -p'
  5836.     fi
  5837.   else
  5838. !   as_ln_s='cp -p'
  5839.   fi
  5840.   rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  5841.   rmdir conf$$.dir 2>/dev/null
  5842. --- 13526,13541 ----
  5843.       # ... but there are two gotchas:
  5844.       # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
  5845.       # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
  5846. !     # In both cases, we have to default to `cp -pR'.
  5847.       ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  5848. !       as_ln_s='cp -pR'
  5849.     elif ln conf$$.file conf$$ 2>/dev/null; then
  5850.       as_ln_s=ln
  5851.     else
  5852. !     as_ln_s='cp -pR'
  5853.     fi
  5854.   else
  5855. !   as_ln_s='cp -pR'
  5856.   fi
  5857.   rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  5858.   rmdir conf$$.dir 2>/dev/null
  5859. ***************
  5860. *** 13548,13554 ****
  5861.         test -d "$as_dir" && break
  5862.       done
  5863.       test -z "$as_dirs" || eval "mkdir $as_dirs"
  5864. !   } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
  5865.   
  5866.   
  5867.   } # as_fn_mkdir_p
  5868. --- 13584,13590 ----
  5869.         test -d "$as_dir" && break
  5870.       done
  5871.       test -z "$as_dirs" || eval "mkdir $as_dirs"
  5872. !   } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
  5873.   
  5874.   
  5875.   } # as_fn_mkdir_p
  5876. ***************
  5877. *** 13559,13586 ****
  5878.     as_mkdir_p=false
  5879.   fi
  5880.   
  5881. ! if test -x / >/dev/null 2>&1; then
  5882. !   as_test_x='test -x'
  5883. ! else
  5884. !   if ls -dL / >/dev/null 2>&1; then
  5885. !     as_ls_L_option=L
  5886. !   else
  5887. !     as_ls_L_option=
  5888. !   fi
  5889. !   as_test_x='
  5890. !     eval sh -c '\''
  5891. !       if test -d "$1"; then
  5892. !     test -d "$1/.";
  5893. !       else
  5894. !     case $1 in #(
  5895. !     -*)set "./$1";;
  5896. !     esac;
  5897. !     case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
  5898. !     ???[sx]*):;;*)false;;esac;fi
  5899. !     '\'' sh
  5900. !   '
  5901. ! fi
  5902. ! as_executable_p=$as_test_x
  5903.   
  5904.   # Sed expression to map a string onto a valid CPP name.
  5905.   as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  5906. --- 13595,13610 ----
  5907.     as_mkdir_p=false
  5908.   fi
  5909.   
  5910. ! # as_fn_executable_p FILE
  5911. ! # -----------------------
  5912. ! # Test if FILE is an executable regular file.
  5913. ! as_fn_executable_p ()
  5914. ! {
  5915. !   test -f "$1" && test -x "$1"
  5916. ! } # as_fn_executable_p
  5917. ! as_test_x='test -x'
  5918. ! as_executable_p=as_fn_executable_p
  5919.   
  5920.   # Sed expression to map a string onto a valid CPP name.
  5921.   as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  5922. ***************
  5923. *** 13602,13608 ****
  5924.   # values after options handling.
  5925.   ac_log="
  5926.   This file was extended by $as_me, which was
  5927. ! generated by GNU Autoconf 2.65.  Invocation command line was
  5928.   
  5929.     CONFIG_FILES    = $CONFIG_FILES
  5930.     CONFIG_HEADERS  = $CONFIG_HEADERS
  5931. --- 13626,13632 ----
  5932.   # values after options handling.
  5933.   ac_log="
  5934.   This file was extended by $as_me, which was
  5935. ! generated by GNU Autoconf 2.69.  Invocation command line was
  5936.   
  5937.     CONFIG_FILES    = $CONFIG_FILES
  5938.     CONFIG_HEADERS  = $CONFIG_HEADERS
  5939. ***************
  5940. *** 13664,13673 ****
  5941.   ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
  5942.   ac_cs_version="\\
  5943.   config.status
  5944. ! configured by $0, generated by GNU Autoconf 2.65,
  5945.     with options \\"\$ac_cs_config\\"
  5946.   
  5947. ! Copyright (C) 2009 Free Software Foundation, Inc.
  5948.   This config.status script is free software; the Free Software Foundation
  5949.   gives unlimited permission to copy, distribute and modify it."
  5950.   
  5951. --- 13688,13697 ----
  5952.   ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
  5953.   ac_cs_version="\\
  5954.   config.status
  5955. ! configured by $0, generated by GNU Autoconf 2.69,
  5956.     with options \\"\$ac_cs_config\\"
  5957.   
  5958. ! Copyright (C) 2012 Free Software Foundation, Inc.
  5959.   This config.status script is free software; the Free Software Foundation
  5960.   gives unlimited permission to copy, distribute and modify it."
  5961.   
  5962. ***************
  5963. *** 13683,13693 ****
  5964.   while test $# != 0
  5965.   do
  5966.     case $1 in
  5967. !   --*=*)
  5968.       ac_option=`expr "X$1" : 'X\([^=]*\)='`
  5969.       ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
  5970.       ac_shift=:
  5971.       ;;
  5972.     *)
  5973.       ac_option=$1
  5974.       ac_optarg=$2
  5975. --- 13707,13722 ----
  5976.   while test $# != 0
  5977.   do
  5978.     case $1 in
  5979. !   --*=?*)
  5980.       ac_option=`expr "X$1" : 'X\([^=]*\)='`
  5981.       ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
  5982.       ac_shift=:
  5983.       ;;
  5984. +   --*=)
  5985. +     ac_option=`expr "X$1" : 'X\([^=]*\)='`
  5986. +     ac_optarg=
  5987. +     ac_shift=:
  5988. +     ;;
  5989.     *)
  5990.       ac_option=$1
  5991.       ac_optarg=$2
  5992. ***************
  5993. *** 13709,13714 ****
  5994. --- 13738,13744 ----
  5995.       $ac_shift
  5996.       case $ac_optarg in
  5997.       *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
  5998. +     '') as_fn_error $? "missing file argument" ;;
  5999.       esac
  6000.       as_fn_append CONFIG_FILES " '$ac_optarg'"
  6001.       ac_need_defaults=false;;
  6002. ***************
  6003. *** 13721,13727 ****
  6004.       ac_need_defaults=false;;
  6005.     --he | --h)
  6006.       # Conflict between --help and --header
  6007. !     as_fn_error "ambiguous option: \`$1'
  6008.   Try \`$0 --help' for more information.";;
  6009.     --help | --hel | -h )
  6010.       $as_echo "$ac_cs_usage"; exit ;;
  6011. --- 13751,13757 ----
  6012.       ac_need_defaults=false;;
  6013.     --he | --h)
  6014.       # Conflict between --help and --header
  6015. !     as_fn_error $? "ambiguous option: \`$1'
  6016.   Try \`$0 --help' for more information.";;
  6017.     --help | --hel | -h )
  6018.       $as_echo "$ac_cs_usage"; exit ;;
  6019. ***************
  6020. *** 13730,13736 ****
  6021.       ac_cs_silent=: ;;
  6022.   
  6023.     # This is an error.
  6024. !   -*) as_fn_error "unrecognized option: \`$1'
  6025.   Try \`$0 --help' for more information." ;;
  6026.   
  6027.     *) as_fn_append ac_config_targets " $1"
  6028. --- 13760,13766 ----
  6029.       ac_cs_silent=: ;;
  6030.   
  6031.     # This is an error.
  6032. !   -*) as_fn_error $? "unrecognized option: \`$1'
  6033.   Try \`$0 --help' for more information." ;;
  6034.   
  6035.     *) as_fn_append ac_config_targets " $1"
  6036. ***************
  6037. *** 13750,13756 ****
  6038.   _ACEOF
  6039.   cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  6040.   if \$ac_cs_recheck; then
  6041. !   set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
  6042.     shift
  6043.     \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
  6044.     CONFIG_SHELL='$SHELL'
  6045. --- 13780,13786 ----
  6046.   _ACEOF
  6047.   cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  6048.   if \$ac_cs_recheck; then
  6049. !   set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
  6050.     shift
  6051.     \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
  6052.     CONFIG_SHELL='$SHELL'
  6053. ***************
  6054. *** 13782,13788 ****
  6055.       "auto/config.h") CONFIG_HEADERS="$CONFIG_HEADERS auto/config.h:config.h.in" ;;
  6056.       "auto/config.mk") CONFIG_FILES="$CONFIG_FILES auto/config.mk:config.mk.in" ;;
  6057.   
  6058. !   *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
  6059.     esac
  6060.   done
  6061.   
  6062. --- 13812,13818 ----
  6063.       "auto/config.h") CONFIG_HEADERS="$CONFIG_HEADERS auto/config.h:config.h.in" ;;
  6064.       "auto/config.mk") CONFIG_FILES="$CONFIG_FILES auto/config.mk:config.mk.in" ;;
  6065.   
  6066. !   *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
  6067.     esac
  6068.   done
  6069.   
  6070. ***************
  6071. *** 13804,13812 ****
  6072.   # after its creation but before its name has been assigned to `$tmp'.
  6073.   $debug ||
  6074.   {
  6075. !   tmp=
  6076.     trap 'exit_status=$?
  6077. !   { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
  6078.   ' 0
  6079.     trap 'as_fn_exit 1' 1 2 13 15
  6080.   }
  6081. --- 13834,13843 ----
  6082.   # after its creation but before its name has been assigned to `$tmp'.
  6083.   $debug ||
  6084.   {
  6085. !   tmp= ac_tmp=
  6086.     trap 'exit_status=$?
  6087. !   : "${ac_tmp:=$tmp}"
  6088. !   { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
  6089.   ' 0
  6090.     trap 'as_fn_exit 1' 1 2 13 15
  6091.   }
  6092. ***************
  6093. *** 13814,13825 ****
  6094.   
  6095.   {
  6096.     tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
  6097. !   test -n "$tmp" && test -d "$tmp"
  6098.   }  ||
  6099.   {
  6100.     tmp=./conf$$-$RANDOM
  6101.     (umask 077 && mkdir "$tmp")
  6102. ! } || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
  6103.   
  6104.   # Set up the scripts for CONFIG_FILES section.
  6105.   # No need to generate them if there are no CONFIG_FILES.
  6106. --- 13845,13857 ----
  6107.   
  6108.   {
  6109.     tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
  6110. !   test -d "$tmp"
  6111.   }  ||
  6112.   {
  6113.     tmp=./conf$$-$RANDOM
  6114.     (umask 077 && mkdir "$tmp")
  6115. ! } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
  6116. ! ac_tmp=$tmp
  6117.   
  6118.   # Set up the scripts for CONFIG_FILES section.
  6119.   # No need to generate them if there are no CONFIG_FILES.
  6120. ***************
  6121. *** 13836,13847 ****
  6122.   fi
  6123.   ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
  6124.   if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
  6125. !   ac_cs_awk_cr='\r'
  6126.   else
  6127.     ac_cs_awk_cr=$ac_cr
  6128.   fi
  6129.   
  6130. ! echo 'BEGIN {' >"$tmp/subs1.awk" &&
  6131.   _ACEOF
  6132.   
  6133.   
  6134. --- 13868,13879 ----
  6135.   fi
  6136.   ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
  6137.   if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
  6138. !   ac_cs_awk_cr='\\r'
  6139.   else
  6140.     ac_cs_awk_cr=$ac_cr
  6141.   fi
  6142.   
  6143. ! echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
  6144.   _ACEOF
  6145.   
  6146.   
  6147. ***************
  6148. *** 13850,13867 ****
  6149.     echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
  6150.     echo "_ACEOF"
  6151.   } >conf$$subs.sh ||
  6152. !   as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
  6153. ! ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
  6154.   ac_delim='%!_!# '
  6155.   for ac_last_try in false false false false false :; do
  6156.     . ./conf$$subs.sh ||
  6157. !     as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
  6158.   
  6159.     ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
  6160.     if test $ac_delim_n = $ac_delim_num; then
  6161.       break
  6162.     elif $ac_last_try; then
  6163. !     as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
  6164.     else
  6165.       ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
  6166.     fi
  6167. --- 13882,13899 ----
  6168.     echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
  6169.     echo "_ACEOF"
  6170.   } >conf$$subs.sh ||
  6171. !   as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
  6172. ! ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
  6173.   ac_delim='%!_!# '
  6174.   for ac_last_try in false false false false false :; do
  6175.     . ./conf$$subs.sh ||
  6176. !     as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
  6177.   
  6178.     ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
  6179.     if test $ac_delim_n = $ac_delim_num; then
  6180.       break
  6181.     elif $ac_last_try; then
  6182. !     as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
  6183.     else
  6184.       ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
  6185.     fi
  6186. ***************
  6187. *** 13869,13875 ****
  6188.   rm -f conf$$subs.sh
  6189.   
  6190.   cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  6191. ! cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
  6192.   _ACEOF
  6193.   sed -n '
  6194.   h
  6195. --- 13901,13907 ----
  6196.   rm -f conf$$subs.sh
  6197.   
  6198.   cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  6199. ! cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
  6200.   _ACEOF
  6201.   sed -n '
  6202.   h
  6203. ***************
  6204. *** 13917,13923 ****
  6205.   rm -f conf$$subs.awk
  6206.   cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  6207.   _ACAWK
  6208. ! cat >>"\$tmp/subs1.awk" <<_ACAWK &&
  6209.     for (key in S) S_is_set[key] = 1
  6210.     FS = ""
  6211.   
  6212. --- 13949,13955 ----
  6213.   rm -f conf$$subs.awk
  6214.   cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  6215.   _ACAWK
  6216. ! cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
  6217.     for (key in S) S_is_set[key] = 1
  6218.     FS = ""
  6219.   
  6220. ***************
  6221. *** 13949,13969 ****
  6222.     sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
  6223.   else
  6224.     cat
  6225. ! fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
  6226. !   || as_fn_error "could not setup config files machinery" "$LINENO" 5
  6227.   _ACEOF
  6228.   
  6229. ! # VPATH may cause trouble with some makes, so we remove $(srcdir),
  6230. ! # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
  6231.   # trailing colons and then remove the whole line if VPATH becomes empty
  6232.   # (actually we leave an empty line to preserve line numbers).
  6233.   if test "x$srcdir" = x.; then
  6234. !   ac_vpsub='/^[     ]*VPATH[     ]*=/{
  6235. ! s/:*\$(srcdir):*/:/
  6236. ! s/:*\${srcdir}:*/:/
  6237. ! s/:*@srcdir@:*/:/
  6238. ! s/^\([^=]*=[     ]*\):*/\1/
  6239.   s/:*$//
  6240.   s/^[^=]*=[     ]*$//
  6241.   }'
  6242.   fi
  6243. --- 13981,14009 ----
  6244.     sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
  6245.   else
  6246.     cat
  6247. ! fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
  6248. !   || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
  6249.   _ACEOF
  6250.   
  6251. ! # VPATH may cause trouble with some makes, so we remove sole $(srcdir),
  6252. ! # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
  6253.   # trailing colons and then remove the whole line if VPATH becomes empty
  6254.   # (actually we leave an empty line to preserve line numbers).
  6255.   if test "x$srcdir" = x.; then
  6256. !   ac_vpsub='/^[     ]*VPATH[     ]*=[     ]*/{
  6257. ! h
  6258. ! s///
  6259. ! s/^/:/
  6260. ! s/[     ]*$/:/
  6261. ! s/:\$(srcdir):/:/g
  6262. ! s/:\${srcdir}:/:/g
  6263. ! s/:@srcdir@:/:/g
  6264. ! s/^:*//
  6265.   s/:*$//
  6266. + x
  6267. + s/\(=[     ]*\).*/\1/
  6268. + G
  6269. + s/\n//
  6270.   s/^[^=]*=[     ]*$//
  6271.   }'
  6272.   fi
  6273. ***************
  6274. *** 13975,13981 ****
  6275.   # No need to generate them if there are no CONFIG_HEADERS.
  6276.   # This happens for instance with `./config.status Makefile'.
  6277.   if test -n "$CONFIG_HEADERS"; then
  6278. ! cat >"$tmp/defines.awk" <<\_ACAWK ||
  6279.   BEGIN {
  6280.   _ACEOF
  6281.   
  6282. --- 14015,14021 ----
  6283.   # No need to generate them if there are no CONFIG_HEADERS.
  6284.   # This happens for instance with `./config.status Makefile'.
  6285.   if test -n "$CONFIG_HEADERS"; then
  6286. ! cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
  6287.   BEGIN {
  6288.   _ACEOF
  6289.   
  6290. ***************
  6291. *** 13987,13997 ****
  6292.   # handling of long lines.
  6293.   ac_delim='%!_!# '
  6294.   for ac_last_try in false false :; do
  6295. !   ac_t=`sed -n "/$ac_delim/p" confdefs.h`
  6296. !   if test -z "$ac_t"; then
  6297.       break
  6298.     elif $ac_last_try; then
  6299. !     as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5
  6300.     else
  6301.       ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
  6302.     fi
  6303. --- 14027,14037 ----
  6304.   # handling of long lines.
  6305.   ac_delim='%!_!# '
  6306.   for ac_last_try in false false :; do
  6307. !   ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
  6308. !   if test -z "$ac_tt"; then
  6309.       break
  6310.     elif $ac_last_try; then
  6311. !     as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
  6312.     else
  6313.       ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
  6314.     fi
  6315. ***************
  6316. *** 14076,14082 ****
  6317.   _ACAWK
  6318.   _ACEOF
  6319.   cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
  6320. !   as_fn_error "could not setup config headers machinery" "$LINENO" 5
  6321.   fi # test -n "$CONFIG_HEADERS"
  6322.   
  6323.   
  6324. --- 14116,14122 ----
  6325.   _ACAWK
  6326.   _ACEOF
  6327.   cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
  6328. !   as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
  6329.   fi # test -n "$CONFIG_HEADERS"
  6330.   
  6331.   
  6332. ***************
  6333. *** 14089,14095 ****
  6334.     esac
  6335.     case $ac_mode$ac_tag in
  6336.     :[FHL]*:*);;
  6337. !   :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
  6338.     :[FH]-) ac_tag=-:-;;
  6339.     :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
  6340.     esac
  6341. --- 14129,14135 ----
  6342.     esac
  6343.     case $ac_mode$ac_tag in
  6344.     :[FHL]*:*);;
  6345. !   :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
  6346.     :[FH]-) ac_tag=-:-;;
  6347.     :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
  6348.     esac
  6349. ***************
  6350. *** 14108,14114 ****
  6351.       for ac_f
  6352.       do
  6353.         case $ac_f in
  6354. !       -) ac_f="$tmp/stdin";;
  6355.         *) # Look for the file first in the build tree, then in the source tree
  6356.        # (if the path is not absolute).  The absolute path cannot be DOS-style,
  6357.        # because $ac_f cannot contain `:'.
  6358. --- 14148,14154 ----
  6359.       for ac_f
  6360.       do
  6361.         case $ac_f in
  6362. !       -) ac_f="$ac_tmp/stdin";;
  6363.         *) # Look for the file first in the build tree, then in the source tree
  6364.        # (if the path is not absolute).  The absolute path cannot be DOS-style,
  6365.        # because $ac_f cannot contain `:'.
  6366. ***************
  6367. *** 14117,14123 ****
  6368.          [\\/$]*) false;;
  6369.          *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
  6370.          esac ||
  6371. !        as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
  6372.         esac
  6373.         case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
  6374.         as_fn_append ac_file_inputs " '$ac_f'"
  6375. --- 14157,14163 ----
  6376.          [\\/$]*) false;;
  6377.          *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
  6378.          esac ||
  6379. !        as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
  6380.         esac
  6381.         case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
  6382.         as_fn_append ac_file_inputs " '$ac_f'"
  6383. ***************
  6384. *** 14143,14150 ****
  6385.       esac
  6386.   
  6387.       case $ac_tag in
  6388. !     *:-:* | *:-) cat >"$tmp/stdin" \
  6389. !       || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
  6390.       esac
  6391.       ;;
  6392.     esac
  6393. --- 14183,14190 ----
  6394.       esac
  6395.   
  6396.       case $ac_tag in
  6397. !     *:-:* | *:-) cat >"$ac_tmp/stdin" \
  6398. !       || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
  6399.       esac
  6400.       ;;
  6401.     esac
  6402. ***************
  6403. *** 14269,14291 ****
  6404.   s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
  6405.   $ac_datarootdir_hack
  6406.   "
  6407. ! eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
  6408. !   || as_fn_error "could not create $ac_file" "$LINENO" 5
  6409.   
  6410.   test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
  6411. !   { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
  6412. !   { ac_out=`sed -n '/^[     ]*datarootdir[     ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
  6413.     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  6414. ! which seems to be undefined.  Please make sure it is defined." >&5
  6415.   $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  6416. ! which seems to be undefined.  Please make sure it is defined." >&2;}
  6417.   
  6418. !   rm -f "$tmp/stdin"
  6419.     case $ac_file in
  6420. !   -) cat "$tmp/out" && rm -f "$tmp/out";;
  6421. !   *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
  6422.     esac \
  6423. !   || as_fn_error "could not create $ac_file" "$LINENO" 5
  6424.    ;;
  6425.     :H)
  6426.     #
  6427. --- 14309,14332 ----
  6428.   s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
  6429.   $ac_datarootdir_hack
  6430.   "
  6431. ! eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
  6432. !   >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  6433.   
  6434.   test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
  6435. !   { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
  6436. !   { ac_out=`sed -n '/^[     ]*datarootdir[     ]*:*=/p' \
  6437. !       "$ac_tmp/out"`; test -z "$ac_out"; } &&
  6438.     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  6439. ! which seems to be undefined.  Please make sure it is defined" >&5
  6440.   $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  6441. ! which seems to be undefined.  Please make sure it is defined" >&2;}
  6442.   
  6443. !   rm -f "$ac_tmp/stdin"
  6444.     case $ac_file in
  6445. !   -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
  6446. !   *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
  6447.     esac \
  6448. !   || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  6449.    ;;
  6450.     :H)
  6451.     #
  6452. ***************
  6453. *** 14294,14314 ****
  6454.     if test x"$ac_file" != x-; then
  6455.       {
  6456.         $as_echo "/* $configure_input  */" \
  6457. !       && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
  6458. !     } >"$tmp/config.h" \
  6459. !       || as_fn_error "could not create $ac_file" "$LINENO" 5
  6460. !     if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
  6461.         { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
  6462.   $as_echo "$as_me: $ac_file is unchanged" >&6;}
  6463.       else
  6464.         rm -f "$ac_file"
  6465. !       mv "$tmp/config.h" "$ac_file" \
  6466. !     || as_fn_error "could not create $ac_file" "$LINENO" 5
  6467.       fi
  6468.     else
  6469.       $as_echo "/* $configure_input  */" \
  6470. !       && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
  6471. !       || as_fn_error "could not create -" "$LINENO" 5
  6472.     fi
  6473.    ;;
  6474.   
  6475. --- 14335,14355 ----
  6476.     if test x"$ac_file" != x-; then
  6477.       {
  6478.         $as_echo "/* $configure_input  */" \
  6479. !       && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
  6480. !     } >"$ac_tmp/config.h" \
  6481. !       || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  6482. !     if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
  6483.         { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
  6484.   $as_echo "$as_me: $ac_file is unchanged" >&6;}
  6485.       else
  6486.         rm -f "$ac_file"
  6487. !       mv "$ac_tmp/config.h" "$ac_file" \
  6488. !     || as_fn_error $? "could not create $ac_file" "$LINENO" 5
  6489.       fi
  6490.     else
  6491.       $as_echo "/* $configure_input  */" \
  6492. !       && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
  6493. !       || as_fn_error $? "could not create -" "$LINENO" 5
  6494.     fi
  6495.    ;;
  6496.   
  6497. ***************
  6498. *** 14323,14329 ****
  6499.   ac_clean_files=$ac_clean_files_save
  6500.   
  6501.   test $ac_write_fail = 0 ||
  6502. !   as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5
  6503.   
  6504.   
  6505.   # configure is writing to config.log, and then calls config.status.
  6506. --- 14364,14370 ----
  6507.   ac_clean_files=$ac_clean_files_save
  6508.   
  6509.   test $ac_write_fail = 0 ||
  6510. !   as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
  6511.   
  6512.   
  6513.   # configure is writing to config.log, and then calls config.status.
  6514. ***************
  6515. *** 14344,14350 ****
  6516.     exec 5>>auto/config.log
  6517.     # Use ||, not &&, to avoid exiting from the if with $? = 1, which
  6518.     # would make configure fail if this is the last instruction.
  6519. !   $ac_cs_success || as_fn_exit $?
  6520.   fi
  6521.   if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
  6522.     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
  6523. --- 14385,14391 ----
  6524.     exec 5>>auto/config.log
  6525.     # Use ||, not &&, to avoid exiting from the if with $? = 1, which
  6526.     # would make configure fail if this is the last instruction.
  6527. !   $ac_cs_success || as_fn_exit 1
  6528.   fi
  6529.   if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
  6530.     { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
  6531. *** ../vim-7.4.222/src/version.c    2014-03-27 17:19:05.868676325 +0100
  6532. --- src/version.c    2014-03-27 17:37:52.608693590 +0100
  6533. ***************
  6534. *** 736,737 ****
  6535. --- 736,739 ----
  6536.   {   /* Add new patch number below this line */
  6537. + /**/
  6538. +     223,
  6539.   /**/
  6540.  
  6541. -- 
  6542. For humans, honesty is a matter of degree.  Engineers are always honest in
  6543. matters of technology and human relationships.  That's why it's a good idea
  6544. to keep engineers away from customers, romantic interests, and other people
  6545. who can't handle the truth.
  6546.                 (Scott Adams - The Dilbert principle)
  6547.  
  6548.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  6549. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  6550. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  6551.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  6552.