home *** CD-ROM | disk | FTP | other *** search
/ Login Magazine 68 / LoginMagazineNo68.bin / MacOSX / Server / ssh-1.2.27-osx-patch.gz / ssh-1.2.27-osx-patch
Text File  |  1999-06-23  |  44KB  |  1,328 lines

  1. diff -cr ssh-1.2.27/config.guess ssh-1.2.27MacOSX/config.guess
  2. *** ssh-1.2.27/config.guess    Wed May 12 07:18:51 1999
  3. --- ssh-1.2.27MacOSX/config.guess    Wed Jun 23 21:32:52 1999
  4. ***************
  5. *** 61,66 ****
  6. --- 61,69 ----
  7.       # 1.2 uses "1.2" for uname -r.
  8.       echo alpha-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//'`
  9.       exit 0 ;;
  10. +     *:Rhapsody:*:*)
  11. +     echo ppc750-apple-rhapsody
  12. +     exit 0 ;;
  13.       21064:Windows_NT:50:3)
  14.       echo alpha-dec-winnt3.5
  15.       exit 0 ;;
  16. diff -cr ssh-1.2.27/config.sub ssh-1.2.27MacOSX/config.sub
  17. *** ssh-1.2.27/config.sub    Wed May 12 07:18:51 1999
  18. --- ssh-1.2.27MacOSX/config.sub    Wed Jun 23 21:32:52 1999
  19. ***************
  20. *** 569,574 ****
  21. --- 569,577 ----
  22.               ;;
  23.       ppc-*)    basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
  24.           ;;
  25. +     ppc750-*)
  26. +         basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
  27. +         ;;
  28.       ppcle | powerpclittle | ppc-le | powerpc-little)
  29.           basic_machine=powerpcle-unknown
  30.               ;;
  31. ***************
  32. *** 832,838 ****
  33.       # CYGNUS LOCAL
  34.       -go32 | -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
  35.             | -windows* | -osx | -abug |  -netware* | -proelf | -os9* \
  36. !           | -macos* | -mpw* | -magic* | -pe* | -win32)
  37.           ;;
  38.       -mac*)                        # CYGNUS LOCAL
  39.           os=`echo $os | sed -e 's|mac|macos|'`
  40. --- 835,841 ----
  41.       # CYGNUS LOCAL
  42.       -go32 | -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
  43.             | -windows* | -osx | -abug |  -netware* | -proelf | -os9* \
  44. !           | -macos* | -mpw* | -magic* | -pe* | -win32 | -rhapsody)
  45.           ;;
  46.       -mac*)                        # CYGNUS LOCAL
  47.           os=`echo $os | sed -e 's|mac|macos|'`
  48. diff -cr ssh-1.2.27/configure.in ssh-1.2.27MacOSX/configure.in
  49. *** ssh-1.2.27/configure.in    Wed May 12 07:20:02 1999
  50. --- ssh-1.2.27MacOSX/configure.in    Wed Jun 23 21:33:40 1999
  51. ***************
  52. *** 185,190 ****
  53. --- 185,197 ----
  54.         AC_DEFINE(SPEED_T_IN_STDTYPES_H)
  55.       fi
  56.       ;;
  57. +   *-*-rhapsody*)
  58. +     # MacOS X Server should be the same as Nextstep
  59. +     no_termios=yes
  60. +     if test -f /usr/include/bsd/sys/termios.h; then
  61. +       AC_DEFINE(SPEED_T_IN_STDTYPES_H)
  62. +     fi
  63. +     ;;
  64.     *-*-linux*|*-*-mklinux*)
  65.       CFLAGS="-D_GNU_SOURCE $CFLAGS"
  66.       AC_CHECK_FUNC(getspnam)
  67. diff -cr ssh-1.2.27/gmp-2.0.2-ssh-2/Makefile.am ssh-1.2.27MacOSX/gmp-2.0.2-ssh-2/Makefile.am
  68. *** ssh-1.2.27/gmp-2.0.2-ssh-2/Makefile.am    Tue Mar 25 01:23:11 1997
  69. --- ssh-1.2.27MacOSX/gmp-2.0.2-ssh-2/Makefile.am    Wed Jun 23 21:32:52 1999
  70. ***************
  71. *** 19,24 ****
  72. --- 19,26 ----
  73.   # the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  74.   # MA 02111-1307, USA.
  75.   
  76. + SHELL = /bin/sh
  77.   AUTOMAKE_OPTIONS = 1.0 foreign dist-zip no-dependencies
  78.   
  79.   SUBDIRS = mpn mpz mpf mpq mpbsd demos
  80. diff -cr ssh-1.2.27/gmp-2.0.2-ssh-2/aclocal.m4 ssh-1.2.27MacOSX/gmp-2.0.2-ssh-2/aclocal.m4
  81. *** ssh-1.2.27/gmp-2.0.2-ssh-2/aclocal.m4    Wed May 12 07:19:33 1999
  82. --- ssh-1.2.27MacOSX/gmp-2.0.2-ssh-2/aclocal.m4    Wed Jun 23 21:32:52 1999
  83. ***************
  84. *** 1,7 ****
  85. ! dnl aclocal.m4 generated automatically by aclocal 1.3
  86.   
  87. ! dnl Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
  88. ! dnl This Makefile.in is free software; the Free Software Foundation
  89.   dnl gives unlimited permission to copy and/or distribute it,
  90.   dnl with or without modifications, as long as this notice is preserved.
  91.   
  92. --- 1,7 ----
  93. ! dnl aclocal.m4 generated automatically by aclocal 1.4
  94.   
  95. ! dnl Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
  96. ! dnl This file is free software; the Free Software Foundation
  97.   dnl gives unlimited permission to copy and/or distribute it,
  98.   dnl with or without modifications, as long as this notice is preserved.
  99.   
  100. ***************
  101. *** 20,26 ****
  102.   dnl AM_INIT_AUTOMAKE(package,version, [no-define])
  103.   
  104.   AC_DEFUN(AM_INIT_AUTOMAKE,
  105. ! [AC_REQUIRE([AM_PROG_INSTALL])
  106.   PACKAGE=[$1]
  107.   AC_SUBST(PACKAGE)
  108.   VERSION=[$2]
  109. --- 20,26 ----
  110.   dnl AM_INIT_AUTOMAKE(package,version, [no-define])
  111.   
  112.   AC_DEFUN(AM_INIT_AUTOMAKE,
  113. ! [AC_REQUIRE([AC_PROG_INSTALL])
  114.   PACKAGE=[$1]
  115.   AC_SUBST(PACKAGE)
  116.   VERSION=[$2]
  117. ***************
  118. *** 30,37 ****
  119.     AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
  120.   fi
  121.   ifelse([$3],,
  122. ! AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
  123. ! AC_DEFINE_UNQUOTED(VERSION, "$VERSION"))
  124.   AC_REQUIRE([AM_SANITY_CHECK])
  125.   AC_REQUIRE([AC_ARG_PROGRAM])
  126.   dnl FIXME This is truly gross.
  127. --- 30,37 ----
  128.     AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
  129.   fi
  130.   ifelse([$3],,
  131. ! AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
  132. ! AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))
  133.   AC_REQUIRE([AM_SANITY_CHECK])
  134.   AC_REQUIRE([AC_ARG_PROGRAM])
  135.   dnl FIXME This is truly gross.
  136. ***************
  137. *** 42,56 ****
  138.   AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
  139.   AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
  140.   AC_REQUIRE([AC_PROG_MAKE_SET])])
  141. - # serial 1
  142. - AC_DEFUN(AM_PROG_INSTALL,
  143. - [AC_REQUIRE([AC_PROG_INSTALL])
  144. - test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
  145. - AC_SUBST(INSTALL_SCRIPT)dnl
  146. - ])
  147.   
  148.   #
  149.   # Check to make sure that the build environment is sane.
  150. --- 42,47 ----
  151. diff -cr ssh-1.2.27/gmp-2.0.2-ssh-2/config.guess ssh-1.2.27MacOSX/gmp-2.0.2-ssh-2/config.guess
  152. *** ssh-1.2.27/gmp-2.0.2-ssh-2/config.guess    Wed Apr 29 22:33:01 1998
  153. --- ssh-1.2.27MacOSX/gmp-2.0.2-ssh-2/config.guess    Wed Jun 23 21:32:52 1999
  154. ***************
  155. *** 61,66 ****
  156. --- 61,69 ----
  157.       # 1.2 uses "1.2" for uname -r.
  158.       echo alpha-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//'`
  159.       exit 0 ;;
  160. +     *:Rhapsody:*:*)
  161. +         echo ppc750-apple-rhapsody
  162. +         exit 0 ;;
  163.       21064:Windows_NT:50:3)
  164.       echo alpha-dec-winnt3.5
  165.       exit 0 ;;
  166. diff -cr ssh-1.2.27/gmp-2.0.2-ssh-2/config.sub ssh-1.2.27MacOSX/gmp-2.0.2-ssh-2/config.sub
  167. *** ssh-1.2.27/gmp-2.0.2-ssh-2/config.sub    Wed Apr 29 22:33:09 1998
  168. --- ssh-1.2.27MacOSX/gmp-2.0.2-ssh-2/config.sub    Wed Jun 23 21:32:52 1999
  169. ***************
  170. *** 569,574 ****
  171. --- 569,577 ----
  172.               ;;
  173.       ppc-*)    basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
  174.           ;;
  175. +         ppc750-*)
  176. +                 basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
  177. +                 ;;
  178.       ppcle | powerpclittle | ppc-le | powerpc-little)
  179.           basic_machine=powerpcle-unknown
  180.               ;;
  181. ***************
  182. *** 832,838 ****
  183.       # CYGNUS LOCAL
  184.       -go32 | -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
  185.             | -windows* | -osx | -abug |  -netware* | -proelf | -os9* \
  186. !           | -macos* | -mpw* | -magic* | -pe* | -win32)
  187.           ;;
  188.       -mac*)                        # CYGNUS LOCAL
  189.           os=`echo $os | sed -e 's|mac|macos|'`
  190. --- 835,841 ----
  191.       # CYGNUS LOCAL
  192.       -go32 | -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \
  193.             | -windows* | -osx | -abug |  -netware* | -proelf | -os9* \
  194. !           | -macos* | -mpw* | -magic* | -pe* | -win32 | -rhapsody )
  195.           ;;
  196.       -mac*)                        # CYGNUS LOCAL
  197.           os=`echo $os | sed -e 's|mac|macos|'`
  198. diff -cr ssh-1.2.27/gmp-2.0.2-ssh-2/configure ssh-1.2.27MacOSX/gmp-2.0.2-ssh-2/configure
  199. *** ssh-1.2.27/gmp-2.0.2-ssh-2/configure    Wed May 12 07:19:35 1999
  200. --- ssh-1.2.27MacOSX/gmp-2.0.2-ssh-2/configure    Wed Jun 23 21:40:58 1999
  201. ***************
  202. *** 600,610 ****
  203.   
  204.   test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  205.   
  206. - test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
  207.   echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
  208. ! echo "configure:608: checking whether build environment is sane" >&5
  209.   # Just in case
  210.   sleep 1
  211.   echo timestamp > conftestfile
  212. --- 600,607 ----
  213.   
  214.   test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  215.   
  216.   echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6
  217. ! echo "configure:605: checking whether build environment is sane" >&5
  218.   # Just in case
  219.   sleep 1
  220.   echo timestamp > conftestfile
  221. ***************
  222. *** 661,667 ****
  223.   test "$program_transform_name" = "" && program_transform_name="s,x,x,"
  224.   
  225.   echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
  226. ! echo "configure:665: checking whether ${MAKE-make} sets \${MAKE}" >&5
  227.   set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
  228.   if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
  229.     echo $ac_n "(cached) $ac_c" 1>&6
  230. --- 658,664 ----
  231.   test "$program_transform_name" = "" && program_transform_name="s,x,x,"
  232.   
  233.   echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
  234. ! echo "configure:662: checking whether ${MAKE-make} sets \${MAKE}" >&5
  235.   set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
  236.   if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
  237.     echo $ac_n "(cached) $ac_c" 1>&6
  238. ***************
  239. *** 696,713 ****
  240.     { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
  241.   fi
  242.   cat >> confdefs.h <<EOF
  243. ! #define PACKAGE "$PACKAGE"
  244.   EOF
  245.   
  246.   cat >> confdefs.h <<EOF
  247. ! #define VERSION "$VERSION"
  248.   EOF
  249.   
  250.   
  251.   
  252.   missing_dir=`cd $ac_aux_dir && pwd`
  253.   echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
  254. ! echo "configure:711: checking for working aclocal" >&5
  255.   # Run test in a subshell; some versions of sh will print an error if
  256.   # an executable is not found, even if stderr is redirected.
  257.   # Redirect stdin to placate older versions of autoconf.  Sigh.
  258. --- 693,710 ----
  259.     { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
  260.   fi
  261.   cat >> confdefs.h <<EOF
  262. ! #define PACKAGE 1
  263.   EOF
  264.   
  265.   cat >> confdefs.h <<EOF
  266. ! #define VERSION 1
  267.   EOF
  268.   
  269.   
  270.   
  271.   missing_dir=`cd $ac_aux_dir && pwd`
  272.   echo $ac_n "checking for working aclocal""... $ac_c" 1>&6
  273. ! echo "configure:708: checking for working aclocal" >&5
  274.   # Run test in a subshell; some versions of sh will print an error if
  275.   # an executable is not found, even if stderr is redirected.
  276.   # Redirect stdin to placate older versions of autoconf.  Sigh.
  277. ***************
  278. *** 720,726 ****
  279.   fi
  280.   
  281.   echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
  282. ! echo "configure:724: checking for working autoconf" >&5
  283.   # Run test in a subshell; some versions of sh will print an error if
  284.   # an executable is not found, even if stderr is redirected.
  285.   # Redirect stdin to placate older versions of autoconf.  Sigh.
  286. --- 717,723 ----
  287.   fi
  288.   
  289.   echo $ac_n "checking for working autoconf""... $ac_c" 1>&6
  290. ! echo "configure:721: checking for working autoconf" >&5
  291.   # Run test in a subshell; some versions of sh will print an error if
  292.   # an executable is not found, even if stderr is redirected.
  293.   # Redirect stdin to placate older versions of autoconf.  Sigh.
  294. ***************
  295. *** 733,739 ****
  296.   fi
  297.   
  298.   echo $ac_n "checking for working automake""... $ac_c" 1>&6
  299. ! echo "configure:737: checking for working automake" >&5
  300.   # Run test in a subshell; some versions of sh will print an error if
  301.   # an executable is not found, even if stderr is redirected.
  302.   # Redirect stdin to placate older versions of autoconf.  Sigh.
  303. --- 730,736 ----
  304.   fi
  305.   
  306.   echo $ac_n "checking for working automake""... $ac_c" 1>&6
  307. ! echo "configure:734: checking for working automake" >&5
  308.   # Run test in a subshell; some versions of sh will print an error if
  309.   # an executable is not found, even if stderr is redirected.
  310.   # Redirect stdin to placate older versions of autoconf.  Sigh.
  311. ***************
  312. *** 746,752 ****
  313.   fi
  314.   
  315.   echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
  316. ! echo "configure:750: checking for working autoheader" >&5
  317.   # Run test in a subshell; some versions of sh will print an error if
  318.   # an executable is not found, even if stderr is redirected.
  319.   # Redirect stdin to placate older versions of autoconf.  Sigh.
  320. --- 743,749 ----
  321.   fi
  322.   
  323.   echo $ac_n "checking for working autoheader""... $ac_c" 1>&6
  324. ! echo "configure:747: checking for working autoheader" >&5
  325.   # Run test in a subshell; some versions of sh will print an error if
  326.   # an executable is not found, even if stderr is redirected.
  327.   # Redirect stdin to placate older versions of autoconf.  Sigh.
  328. ***************
  329. *** 759,765 ****
  330.   fi
  331.   
  332.   echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
  333. ! echo "configure:763: checking for working makeinfo" >&5
  334.   # Run test in a subshell; some versions of sh will print an error if
  335.   # an executable is not found, even if stderr is redirected.
  336.   # Redirect stdin to placate older versions of autoconf.  Sigh.
  337. --- 756,762 ----
  338.   fi
  339.   
  340.   echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6
  341. ! echo "configure:760: checking for working makeinfo" >&5
  342.   # Run test in a subshell; some versions of sh will print an error if
  343.   # an executable is not found, even if stderr is redirected.
  344.   # Redirect stdin to placate older versions of autoconf.  Sigh.
  345. ***************
  346. *** 780,786 ****
  347.   fi
  348.   
  349.   echo $ac_n "checking host system type""... $ac_c" 1>&6
  350. ! echo "configure:784: checking host system type" >&5
  351.   
  352.   host_alias=$host
  353.   case "$host_alias" in
  354. --- 777,783 ----
  355.   fi
  356.   
  357.   echo $ac_n "checking host system type""... $ac_c" 1>&6
  358. ! echo "configure:781: checking host system type" >&5
  359.   
  360.   host_alias=$host
  361.   case "$host_alias" in
  362. ***************
  363. *** 801,807 ****
  364.   echo "$ac_t""$host" 1>&6
  365.   
  366.   echo $ac_n "checking cached information""... $ac_c" 1>&6
  367. ! echo "configure:805: checking cached information" >&5
  368.   hostcheck="$host"
  369.   if eval "test \"`echo '$''{'ac_cv_gmp_hostcheck'+set}'`\" = set"; then
  370.     echo $ac_n "(cached) $ac_c" 1>&6
  371. --- 798,804 ----
  372.   echo "$ac_t""$host" 1>&6
  373.   
  374.   echo $ac_n "checking cached information""... $ac_c" 1>&6
  375. ! echo "configure:802: checking cached information" >&5
  376.   hostcheck="$host"
  377.   if eval "test \"`echo '$''{'ac_cv_gmp_hostcheck'+set}'`\" = set"; then
  378.     echo $ac_n "(cached) $ac_c" 1>&6
  379. ***************
  380. *** 820,826 ****
  381.   # Extract the first word of "gcc", so it can be a program name with args.
  382.   set dummy gcc; ac_word=$2
  383.   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  384. ! echo "configure:824: checking for $ac_word" >&5
  385.   if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
  386.     echo $ac_n "(cached) $ac_c" 1>&6
  387.   else
  388. --- 817,823 ----
  389.   # Extract the first word of "gcc", so it can be a program name with args.
  390.   set dummy gcc; ac_word=$2
  391.   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  392. ! echo "configure:821: checking for $ac_word" >&5
  393.   if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
  394.     echo $ac_n "(cached) $ac_c" 1>&6
  395.   else
  396. ***************
  397. *** 849,855 ****
  398.     # Extract the first word of "cc", so it can be a program name with args.
  399.   set dummy cc; ac_word=$2
  400.   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  401. ! echo "configure:853: checking for $ac_word" >&5
  402.   if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
  403.     echo $ac_n "(cached) $ac_c" 1>&6
  404.   else
  405. --- 846,852 ----
  406.     # Extract the first word of "cc", so it can be a program name with args.
  407.   set dummy cc; ac_word=$2
  408.   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  409. ! echo "configure:850: checking for $ac_word" >&5
  410.   if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
  411.     echo $ac_n "(cached) $ac_c" 1>&6
  412.   else
  413. ***************
  414. *** 897,903 ****
  415.   fi
  416.   
  417.   echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
  418. ! echo "configure:901: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
  419.   
  420.   ac_ext=c
  421.   # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  422. --- 894,900 ----
  423.   fi
  424.   
  425.   echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
  426. ! echo "configure:898: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
  427.   
  428.   ac_ext=c
  429.   # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  430. ***************
  431. *** 907,917 ****
  432.   cross_compiling=$ac_cv_prog_cc_cross
  433.   
  434.   cat > conftest.$ac_ext <<EOF
  435. ! #line 911 "configure"
  436.   #include "confdefs.h"
  437.   main(){return(0);}
  438.   EOF
  439. ! if { (eval echo configure:915: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  440.     ac_cv_prog_cc_works=yes
  441.     # If we can't run a trivial program, we are probably using a cross compiler.
  442.     if (./conftest; exit) 2>/dev/null; then
  443. --- 904,914 ----
  444.   cross_compiling=$ac_cv_prog_cc_cross
  445.   
  446.   cat > conftest.$ac_ext <<EOF
  447. ! #line 908 "configure"
  448.   #include "confdefs.h"
  449.   main(){return(0);}
  450.   EOF
  451. ! if { (eval echo configure:912: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  452.     ac_cv_prog_cc_works=yes
  453.     # If we can't run a trivial program, we are probably using a cross compiler.
  454.     if (./conftest; exit) 2>/dev/null; then
  455. ***************
  456. *** 931,942 ****
  457.     { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
  458.   fi
  459.   echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
  460. ! echo "configure:935: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
  461.   echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
  462.   cross_compiling=$ac_cv_prog_cc_cross
  463.   
  464.   echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
  465. ! echo "configure:940: checking whether we are using GNU C" >&5
  466.   if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
  467.     echo $ac_n "(cached) $ac_c" 1>&6
  468.   else
  469. --- 928,939 ----
  470.     { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
  471.   fi
  472.   echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
  473. ! echo "configure:932: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
  474.   echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
  475.   cross_compiling=$ac_cv_prog_cc_cross
  476.   
  477.   echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
  478. ! echo "configure:937: checking whether we are using GNU C" >&5
  479.   if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
  480.     echo $ac_n "(cached) $ac_c" 1>&6
  481.   else
  482. ***************
  483. *** 945,951 ****
  484.     yes;
  485.   #endif
  486.   EOF
  487. ! if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:949: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
  488.     ac_cv_prog_gcc=yes
  489.   else
  490.     ac_cv_prog_gcc=no
  491. --- 942,948 ----
  492.     yes;
  493.   #endif
  494.   EOF
  495. ! if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:946: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
  496.     ac_cv_prog_gcc=yes
  497.   else
  498.     ac_cv_prog_gcc=no
  499. ***************
  500. *** 960,966 ****
  501.     ac_save_CFLAGS="$CFLAGS"
  502.     CFLAGS=
  503.     echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
  504. ! echo "configure:964: checking whether ${CC-cc} accepts -g" >&5
  505.   if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
  506.     echo $ac_n "(cached) $ac_c" 1>&6
  507.   else
  508. --- 957,963 ----
  509.     ac_save_CFLAGS="$CFLAGS"
  510.     CFLAGS=
  511.     echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
  512. ! echo "configure:961: checking whether ${CC-cc} accepts -g" >&5
  513.   if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
  514.     echo $ac_n "(cached) $ac_c" 1>&6
  515.   else
  516. ***************
  517. *** 988,999 ****
  518.   fi
  519.   
  520.   echo $ac_n "checking for working const""... $ac_c" 1>&6
  521. ! echo "configure:992: checking for working const" >&5
  522.   if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
  523.     echo $ac_n "(cached) $ac_c" 1>&6
  524.   else
  525.     cat > conftest.$ac_ext <<EOF
  526. ! #line 997 "configure"
  527.   #include "confdefs.h"
  528.   
  529.   int main() {
  530. --- 985,996 ----
  531.   fi
  532.   
  533.   echo $ac_n "checking for working const""... $ac_c" 1>&6
  534. ! echo "configure:989: checking for working const" >&5
  535.   if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
  536.     echo $ac_n "(cached) $ac_c" 1>&6
  537.   else
  538.     cat > conftest.$ac_ext <<EOF
  539. ! #line 994 "configure"
  540.   #include "confdefs.h"
  541.   
  542.   int main() {
  543. ***************
  544. *** 1042,1048 ****
  545.   
  546.   ; return 0; }
  547.   EOF
  548. ! if { (eval echo configure:1046: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  549.     rm -rf conftest*
  550.     ac_cv_c_const=yes
  551.   else
  552. --- 1039,1045 ----
  553.   
  554.   ; return 0; }
  555.   EOF
  556. ! if { (eval echo configure:1043: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  557.     rm -rf conftest*
  558.     ac_cv_c_const=yes
  559.   else
  560. ***************
  561. *** 1063,1083 ****
  562.   fi
  563.   
  564.   echo $ac_n "checking for inline""... $ac_c" 1>&6
  565. ! echo "configure:1067: checking for inline" >&5
  566.   if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then
  567.     echo $ac_n "(cached) $ac_c" 1>&6
  568.   else
  569.     ac_cv_c_inline=no
  570.   for ac_kw in inline __inline__ __inline; do
  571.     cat > conftest.$ac_ext <<EOF
  572. ! #line 1074 "configure"
  573.   #include "confdefs.h"
  574.   
  575.   int main() {
  576.   } $ac_kw foo() {
  577.   ; return 0; }
  578.   EOF
  579. ! if { (eval echo configure:1081: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  580.     rm -rf conftest*
  581.     ac_cv_c_inline=$ac_kw; break
  582.   else
  583. --- 1060,1080 ----
  584.   fi
  585.   
  586.   echo $ac_n "checking for inline""... $ac_c" 1>&6
  587. ! echo "configure:1064: checking for inline" >&5
  588.   if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then
  589.     echo $ac_n "(cached) $ac_c" 1>&6
  590.   else
  591.     ac_cv_c_inline=no
  592.   for ac_kw in inline __inline__ __inline; do
  593.     cat > conftest.$ac_ext <<EOF
  594. ! #line 1071 "configure"
  595.   #include "confdefs.h"
  596.   
  597.   int main() {
  598.   } $ac_kw foo() {
  599.   ; return 0; }
  600.   EOF
  601. ! if { (eval echo configure:1078: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
  602.     rm -rf conftest*
  603.     ac_cv_c_inline=$ac_kw; break
  604.   else
  605. ***************
  606. *** 1103,1109 ****
  607.   esac
  608.   
  609.   echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
  610. ! echo "configure:1107: checking how to run the C preprocessor" >&5
  611.   # On Suns, sometimes $CPP names a directory.
  612.   if test -n "$CPP" && test -d "$CPP"; then
  613.     CPP=
  614. --- 1100,1106 ----
  615.   esac
  616.   
  617.   echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
  618. ! echo "configure:1104: checking how to run the C preprocessor" >&5
  619.   # On Suns, sometimes $CPP names a directory.
  620.   if test -n "$CPP" && test -d "$CPP"; then
  621.     CPP=
  622. ***************
  623. *** 1118,1130 ****
  624.     # On the NeXT, cc -E runs the code through the compiler's parser,
  625.     # not just through cpp.
  626.     cat > conftest.$ac_ext <<EOF
  627. ! #line 1122 "configure"
  628.   #include "confdefs.h"
  629.   #include <assert.h>
  630.   Syntax Error
  631.   EOF
  632.   ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  633. ! { (eval echo configure:1128: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  634.   ac_err=`grep -v '^ *+' conftest.out`
  635.   if test -z "$ac_err"; then
  636.     :
  637. --- 1115,1127 ----
  638.     # On the NeXT, cc -E runs the code through the compiler's parser,
  639.     # not just through cpp.
  640.     cat > conftest.$ac_ext <<EOF
  641. ! #line 1119 "configure"
  642.   #include "confdefs.h"
  643.   #include <assert.h>
  644.   Syntax Error
  645.   EOF
  646.   ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  647. ! { (eval echo configure:1125: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  648.   ac_err=`grep -v '^ *+' conftest.out`
  649.   if test -z "$ac_err"; then
  650.     :
  651. ***************
  652. *** 1135,1147 ****
  653.     rm -rf conftest*
  654.     CPP="${CC-cc} -E -traditional-cpp"
  655.     cat > conftest.$ac_ext <<EOF
  656. ! #line 1139 "configure"
  657.   #include "confdefs.h"
  658.   #include <assert.h>
  659.   Syntax Error
  660.   EOF
  661.   ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  662. ! { (eval echo configure:1145: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  663.   ac_err=`grep -v '^ *+' conftest.out`
  664.   if test -z "$ac_err"; then
  665.     :
  666. --- 1132,1144 ----
  667.     rm -rf conftest*
  668.     CPP="${CC-cc} -E -traditional-cpp"
  669.     cat > conftest.$ac_ext <<EOF
  670. ! #line 1136 "configure"
  671.   #include "confdefs.h"
  672.   #include <assert.h>
  673.   Syntax Error
  674.   EOF
  675.   ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  676. ! { (eval echo configure:1142: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  677.   ac_err=`grep -v '^ *+' conftest.out`
  678.   if test -z "$ac_err"; then
  679.     :
  680. ***************
  681. *** 1164,1175 ****
  682.   echo "$ac_t""$CPP" 1>&6
  683.   
  684.   echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
  685. ! echo "configure:1168: checking for ANSI C header files" >&5
  686.   if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
  687.     echo $ac_n "(cached) $ac_c" 1>&6
  688.   else
  689.     cat > conftest.$ac_ext <<EOF
  690. ! #line 1173 "configure"
  691.   #include "confdefs.h"
  692.   #include <stdlib.h>
  693.   #include <stdarg.h>
  694. --- 1161,1172 ----
  695.   echo "$ac_t""$CPP" 1>&6
  696.   
  697.   echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
  698. ! echo "configure:1165: checking for ANSI C header files" >&5
  699.   if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
  700.     echo $ac_n "(cached) $ac_c" 1>&6
  701.   else
  702.     cat > conftest.$ac_ext <<EOF
  703. ! #line 1170 "configure"
  704.   #include "confdefs.h"
  705.   #include <stdlib.h>
  706.   #include <stdarg.h>
  707. ***************
  708. *** 1177,1183 ****
  709.   #include <float.h>
  710.   EOF
  711.   ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  712. ! { (eval echo configure:1181: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  713.   ac_err=`grep -v '^ *+' conftest.out`
  714.   if test -z "$ac_err"; then
  715.     rm -rf conftest*
  716. --- 1174,1180 ----
  717.   #include <float.h>
  718.   EOF
  719.   ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  720. ! { (eval echo configure:1178: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
  721.   ac_err=`grep -v '^ *+' conftest.out`
  722.   if test -z "$ac_err"; then
  723.     rm -rf conftest*
  724. ***************
  725. *** 1194,1200 ****
  726.   if test $ac_cv_header_stdc = yes; then
  727.     # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  728.   cat > conftest.$ac_ext <<EOF
  729. ! #line 1198 "configure"
  730.   #include "confdefs.h"
  731.   #include <string.h>
  732.   EOF
  733. --- 1191,1197 ----
  734.   if test $ac_cv_header_stdc = yes; then
  735.     # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  736.   cat > conftest.$ac_ext <<EOF
  737. ! #line 1195 "configure"
  738.   #include "confdefs.h"
  739.   #include <string.h>
  740.   EOF
  741. ***************
  742. *** 1212,1218 ****
  743.   if test $ac_cv_header_stdc = yes; then
  744.     # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  745.   cat > conftest.$ac_ext <<EOF
  746. ! #line 1216 "configure"
  747.   #include "confdefs.h"
  748.   #include <stdlib.h>
  749.   EOF
  750. --- 1209,1215 ----
  751.   if test $ac_cv_header_stdc = yes; then
  752.     # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  753.   cat > conftest.$ac_ext <<EOF
  754. ! #line 1213 "configure"
  755.   #include "confdefs.h"
  756.   #include <stdlib.h>
  757.   EOF
  758. ***************
  759. *** 1233,1239 ****
  760.     :
  761.   else
  762.     cat > conftest.$ac_ext <<EOF
  763. ! #line 1237 "configure"
  764.   #include "confdefs.h"
  765.   #include <ctype.h>
  766.   #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  767. --- 1230,1236 ----
  768.     :
  769.   else
  770.     cat > conftest.$ac_ext <<EOF
  771. ! #line 1234 "configure"
  772.   #include "confdefs.h"
  773.   #include <ctype.h>
  774.   #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  775. ***************
  776. *** 1244,1250 ****
  777.   exit (0); }
  778.   
  779.   EOF
  780. ! if { (eval echo configure:1248: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
  781.   then
  782.     :
  783.   else
  784. --- 1241,1247 ----
  785.   exit (0); }
  786.   
  787.   EOF
  788. ! if { (eval echo configure:1245: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
  789.   then
  790.     :
  791.   else
  792. ***************
  793. *** 1268,1274 ****
  794.   fi
  795.   
  796.   echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
  797. ! echo "configure:1272: checking whether ln -s works" >&5
  798.   if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
  799.     echo $ac_n "(cached) $ac_c" 1>&6
  800.   else
  801. --- 1265,1271 ----
  802.   fi
  803.   
  804.   echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
  805. ! echo "configure:1269: checking whether ln -s works" >&5
  806.   if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
  807.     echo $ac_n "(cached) $ac_c" 1>&6
  808.   else
  809. ***************
  810. *** 1291,1297 ****
  811.   # Extract the first word of "ranlib", so it can be a program name with args.
  812.   set dummy ranlib; ac_word=$2
  813.   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  814. ! echo "configure:1295: checking for $ac_word" >&5
  815.   if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
  816.     echo $ac_n "(cached) $ac_c" 1>&6
  817.   else
  818. --- 1288,1294 ----
  819.   # Extract the first word of "ranlib", so it can be a program name with args.
  820.   set dummy ranlib; ac_word=$2
  821.   echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  822. ! echo "configure:1292: checking for $ac_word" >&5
  823.   if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
  824.     echo $ac_n "(cached) $ac_c" 1>&6
  825.   else
  826. ***************
  827. *** 1318,1324 ****
  828.   fi
  829.   
  830.   echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
  831. ! echo "configure:1322: checking whether ${MAKE-make} sets \${MAKE}" >&5
  832.   set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
  833.   if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
  834.     echo $ac_n "(cached) $ac_c" 1>&6
  835. --- 1315,1321 ----
  836.   fi
  837.   
  838.   echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
  839. ! echo "configure:1319: checking whether ${MAKE-make} sets \${MAKE}" >&5
  840.   set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
  841.   if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
  842.     echo $ac_n "(cached) $ac_c" 1>&6
  843. ***************
  844. *** 1355,1361 ****
  845.   # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  846.   # ./install, which can be erroneously created by make from ./install.sh.
  847.   echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
  848. ! echo "configure:1359: checking for a BSD compatible install" >&5
  849.   if test -z "$INSTALL"; then
  850.   if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
  851.     echo $ac_n "(cached) $ac_c" 1>&6
  852. --- 1352,1358 ----
  853.   # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  854.   # ./install, which can be erroneously created by make from ./install.sh.
  855.   echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
  856. ! echo "configure:1356: checking for a BSD compatible install" >&5
  857.   if test -z "$INSTALL"; then
  858.   if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
  859.     echo $ac_n "(cached) $ac_c" 1>&6
  860. ***************
  861. *** 1407,1418 ****
  862.   for ac_func in random
  863.   do
  864.   echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
  865. ! echo "configure:1411: checking for $ac_func" >&5
  866.   if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
  867.     echo $ac_n "(cached) $ac_c" 1>&6
  868.   else
  869.     cat > conftest.$ac_ext <<EOF
  870. ! #line 1416 "configure"
  871.   #include "confdefs.h"
  872.   /* System header to define __stub macros and hopefully few prototypes,
  873.       which can conflict with char $ac_func(); below.  */
  874. --- 1404,1415 ----
  875.   for ac_func in random
  876.   do
  877.   echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
  878. ! echo "configure:1408: checking for $ac_func" >&5
  879.   if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
  880.     echo $ac_n "(cached) $ac_c" 1>&6
  881.   else
  882.     cat > conftest.$ac_ext <<EOF
  883. ! #line 1413 "configure"
  884.   #include "confdefs.h"
  885.   /* System header to define __stub macros and hopefully few prototypes,
  886.       which can conflict with char $ac_func(); below.  */
  887. ***************
  888. *** 1435,1441 ****
  889.   
  890.   ; return 0; }
  891.   EOF
  892. ! if { (eval echo configure:1439: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  893.     rm -rf conftest*
  894.     eval "ac_cv_func_$ac_func=yes"
  895.   else
  896. --- 1432,1438 ----
  897.   
  898.   ; return 0; }
  899.   EOF
  900. ! if { (eval echo configure:1436: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  901.     rm -rf conftest*
  902.     eval "ac_cv_func_$ac_func=yes"
  903.   else
  904. ***************
  905. *** 1481,1487 ****
  906.   test "$program_transform_name" = "" && program_transform_name="s,x,x,"
  907.   
  908.   echo $ac_n "checking size of int""... $ac_c" 1>&6
  909. ! echo "configure:1485: checking size of int" >&5
  910.   if eval "test \"`echo '$''{'ac_cv_sizeof_int'+set}'`\" = set"; then
  911.     echo $ac_n "(cached) $ac_c" 1>&6
  912.   else
  913. --- 1478,1484 ----
  914.   test "$program_transform_name" = "" && program_transform_name="s,x,x,"
  915.   
  916.   echo $ac_n "checking size of int""... $ac_c" 1>&6
  917. ! echo "configure:1482: checking size of int" >&5
  918.   if eval "test \"`echo '$''{'ac_cv_sizeof_int'+set}'`\" = set"; then
  919.     echo $ac_n "(cached) $ac_c" 1>&6
  920.   else
  921. ***************
  922. *** 1489,1495 ****
  923.     ac_cv_sizeof_int=4
  924.   else
  925.     cat > conftest.$ac_ext <<EOF
  926. ! #line 1493 "configure"
  927.   #include "confdefs.h"
  928.   #include <stdio.h>
  929.   main()
  930. --- 1486,1492 ----
  931.     ac_cv_sizeof_int=4
  932.   else
  933.     cat > conftest.$ac_ext <<EOF
  934. ! #line 1490 "configure"
  935.   #include "confdefs.h"
  936.   #include <stdio.h>
  937.   main()
  938. ***************
  939. *** 1500,1506 ****
  940.     exit(0);
  941.   }
  942.   EOF
  943. ! if { (eval echo configure:1504: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
  944.   then
  945.     ac_cv_sizeof_int=`cat conftestval`
  946.   else
  947. --- 1497,1503 ----
  948.     exit(0);
  949.   }
  950.   EOF
  951. ! if { (eval echo configure:1501: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
  952.   then
  953.     ac_cv_sizeof_int=`cat conftestval`
  954.   else
  955. ***************
  956. *** 1522,1540 ****
  957.   # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  958.   # for constant arguments.  Useless!
  959.   echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6
  960. ! echo "configure:1526: checking for working alloca.h" >&5
  961.   if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
  962.     echo $ac_n "(cached) $ac_c" 1>&6
  963.   else
  964.     cat > conftest.$ac_ext <<EOF
  965. ! #line 1531 "configure"
  966.   #include "confdefs.h"
  967.   #include <alloca.h>
  968.   int main() {
  969.   char *p = alloca(2 * sizeof(int));
  970.   ; return 0; }
  971.   EOF
  972. ! if { (eval echo configure:1538: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  973.     rm -rf conftest*
  974.     ac_cv_header_alloca_h=yes
  975.   else
  976. --- 1519,1537 ----
  977.   # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  978.   # for constant arguments.  Useless!
  979.   echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6
  980. ! echo "configure:1523: checking for working alloca.h" >&5
  981.   if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
  982.     echo $ac_n "(cached) $ac_c" 1>&6
  983.   else
  984.     cat > conftest.$ac_ext <<EOF
  985. ! #line 1528 "configure"
  986.   #include "confdefs.h"
  987.   #include <alloca.h>
  988.   int main() {
  989.   char *p = alloca(2 * sizeof(int));
  990.   ; return 0; }
  991.   EOF
  992. ! if { (eval echo configure:1535: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  993.     rm -rf conftest*
  994.     ac_cv_header_alloca_h=yes
  995.   else
  996. ***************
  997. *** 1555,1566 ****
  998.   fi
  999.   
  1000.   echo $ac_n "checking for alloca""... $ac_c" 1>&6
  1001. ! echo "configure:1559: checking for alloca" >&5
  1002.   if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
  1003.     echo $ac_n "(cached) $ac_c" 1>&6
  1004.   else
  1005.     cat > conftest.$ac_ext <<EOF
  1006. ! #line 1564 "configure"
  1007.   #include "confdefs.h"
  1008.   
  1009.   #ifdef __GNUC__
  1010. --- 1552,1563 ----
  1011.   fi
  1012.   
  1013.   echo $ac_n "checking for alloca""... $ac_c" 1>&6
  1014. ! echo "configure:1556: checking for alloca" >&5
  1015.   if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
  1016.     echo $ac_n "(cached) $ac_c" 1>&6
  1017.   else
  1018.     cat > conftest.$ac_ext <<EOF
  1019. ! #line 1561 "configure"
  1020.   #include "confdefs.h"
  1021.   
  1022.   #ifdef __GNUC__
  1023. ***************
  1024. *** 1583,1589 ****
  1025.   char *p = (char *) alloca(1);
  1026.   ; return 0; }
  1027.   EOF
  1028. ! if { (eval echo configure:1587: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1029.     rm -rf conftest*
  1030.     ac_cv_func_alloca_works=yes
  1031.   else
  1032. --- 1580,1586 ----
  1033.   char *p = (char *) alloca(1);
  1034.   ; return 0; }
  1035.   EOF
  1036. ! if { (eval echo configure:1584: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1037.     rm -rf conftest*
  1038.     ac_cv_func_alloca_works=yes
  1039.   else
  1040. ***************
  1041. *** 1615,1626 ****
  1042.   
  1043.   
  1044.   echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
  1045. ! echo "configure:1619: checking whether alloca needs Cray hooks" >&5
  1046.   if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
  1047.     echo $ac_n "(cached) $ac_c" 1>&6
  1048.   else
  1049.     cat > conftest.$ac_ext <<EOF
  1050. ! #line 1624 "configure"
  1051.   #include "confdefs.h"
  1052.   #if defined(CRAY) && ! defined(CRAY2)
  1053.   webecray
  1054. --- 1612,1623 ----
  1055.   
  1056.   
  1057.   echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
  1058. ! echo "configure:1616: checking whether alloca needs Cray hooks" >&5
  1059.   if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
  1060.     echo $ac_n "(cached) $ac_c" 1>&6
  1061.   else
  1062.     cat > conftest.$ac_ext <<EOF
  1063. ! #line 1621 "configure"
  1064.   #include "confdefs.h"
  1065.   #if defined(CRAY) && ! defined(CRAY2)
  1066.   webecray
  1067. ***************
  1068. *** 1645,1656 ****
  1069.   if test $ac_cv_os_cray = yes; then
  1070.   for ac_func in _getb67 GETB67 getb67; do
  1071.     echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
  1072. ! echo "configure:1649: checking for $ac_func" >&5
  1073.   if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
  1074.     echo $ac_n "(cached) $ac_c" 1>&6
  1075.   else
  1076.     cat > conftest.$ac_ext <<EOF
  1077. ! #line 1654 "configure"
  1078.   #include "confdefs.h"
  1079.   /* System header to define __stub macros and hopefully few prototypes,
  1080.       which can conflict with char $ac_func(); below.  */
  1081. --- 1642,1653 ----
  1082.   if test $ac_cv_os_cray = yes; then
  1083.   for ac_func in _getb67 GETB67 getb67; do
  1084.     echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
  1085. ! echo "configure:1646: checking for $ac_func" >&5
  1086.   if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
  1087.     echo $ac_n "(cached) $ac_c" 1>&6
  1088.   else
  1089.     cat > conftest.$ac_ext <<EOF
  1090. ! #line 1651 "configure"
  1091.   #include "confdefs.h"
  1092.   /* System header to define __stub macros and hopefully few prototypes,
  1093.       which can conflict with char $ac_func(); below.  */
  1094. ***************
  1095. *** 1673,1679 ****
  1096.   
  1097.   ; return 0; }
  1098.   EOF
  1099. ! if { (eval echo configure:1677: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1100.     rm -rf conftest*
  1101.     eval "ac_cv_func_$ac_func=yes"
  1102.   else
  1103. --- 1670,1676 ----
  1104.   
  1105.   ; return 0; }
  1106.   EOF
  1107. ! if { (eval echo configure:1674: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1108.     rm -rf conftest*
  1109.     eval "ac_cv_func_$ac_func=yes"
  1110.   else
  1111. ***************
  1112. *** 1700,1706 ****
  1113.   fi
  1114.   
  1115.   echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
  1116. ! echo "configure:1704: checking stack direction for C alloca" >&5
  1117.   if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
  1118.     echo $ac_n "(cached) $ac_c" 1>&6
  1119.   else
  1120. --- 1697,1703 ----
  1121.   fi
  1122.   
  1123.   echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
  1124. ! echo "configure:1701: checking stack direction for C alloca" >&5
  1125.   if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
  1126.     echo $ac_n "(cached) $ac_c" 1>&6
  1127.   else
  1128. ***************
  1129. *** 1708,1714 ****
  1130.     ac_cv_c_stack_direction=0
  1131.   else
  1132.     cat > conftest.$ac_ext <<EOF
  1133. ! #line 1712 "configure"
  1134.   #include "confdefs.h"
  1135.   find_stack_direction ()
  1136.   {
  1137. --- 1705,1711 ----
  1138.     ac_cv_c_stack_direction=0
  1139.   else
  1140.     cat > conftest.$ac_ext <<EOF
  1141. ! #line 1709 "configure"
  1142.   #include "confdefs.h"
  1143.   find_stack_direction ()
  1144.   {
  1145. ***************
  1146. *** 1727,1733 ****
  1147.     exit (find_stack_direction() < 0);
  1148.   }
  1149.   EOF
  1150. ! if { (eval echo configure:1731: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
  1151.   then
  1152.     ac_cv_c_stack_direction=1
  1153.   else
  1154. --- 1724,1730 ----
  1155.     exit (find_stack_direction() < 0);
  1156.   }
  1157.   EOF
  1158. ! if { (eval echo configure:1728: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
  1159.   then
  1160.     ac_cv_c_stack_direction=1
  1161.   else
  1162. ***************
  1163. *** 1776,1793 ****
  1164.       path="hppa/hppa1_1 hppa"
  1165.       extra_functions="udiv_qrnnd"
  1166.           echo $ac_n "checking whether assembler understands +DA1.1 option""... $ac_c" 1>&6
  1167. ! echo "configure:1780: checking whether assembler understands +DA1.1 option" >&5
  1168.       OLD_CFLAGS=$CFLAGS
  1169.       CFLAGS="$CFLAGS -Wa,+DA1.1"
  1170.       cat > conftest.$ac_ext <<EOF
  1171. ! #line 1784 "configure"
  1172.   #include "confdefs.h"
  1173.   
  1174.   int main() {
  1175.   
  1176.   ; return 0; }
  1177.   EOF
  1178. ! if { (eval echo configure:1791: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1179.     rm -rf conftest*
  1180.     echo "$ac_t""yes" 1>&6
  1181.       SFLAGS="-Wa,+DA1.1"
  1182. --- 1773,1790 ----
  1183.       path="hppa/hppa1_1 hppa"
  1184.       extra_functions="udiv_qrnnd"
  1185.           echo $ac_n "checking whether assembler understands +DA1.1 option""... $ac_c" 1>&6
  1186. ! echo "configure:1777: checking whether assembler understands +DA1.1 option" >&5
  1187.       OLD_CFLAGS=$CFLAGS
  1188.       CFLAGS="$CFLAGS -Wa,+DA1.1"
  1189.       cat > conftest.$ac_ext <<EOF
  1190. ! #line 1781 "configure"
  1191.   #include "confdefs.h"
  1192.   
  1193.   int main() {
  1194.   
  1195.   ; return 0; }
  1196.   EOF
  1197. ! if { (eval echo configure:1788: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1198.     rm -rf conftest*
  1199.     echo "$ac_t""yes" 1>&6
  1200.       SFLAGS="-Wa,+DA1.1"
  1201. ***************
  1202. *** 1809,1826 ****
  1203.       path="hppa/hppa1_1/pa7100 hppa/hppa1_1 hppa"
  1204.       extra_functions="udiv_qrnnd"
  1205.           echo $ac_n "checking whether assembler understands +DA1.1 option""... $ac_c" 1>&6
  1206. ! echo "configure:1813: checking whether assembler understands +DA1.1 option" >&5
  1207.       OLD_CFLAGS=$CFLAGS
  1208.       CFLAGS="$CFLAGS -Wa,+DA1.1"
  1209.       cat > conftest.$ac_ext <<EOF
  1210. ! #line 1817 "configure"
  1211.   #include "confdefs.h"
  1212.   
  1213.   int main() {
  1214.   
  1215.   ; return 0; }
  1216.   EOF
  1217. ! if { (eval echo configure:1824: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1218.     rm -rf conftest*
  1219.     echo "$ac_t""yes" 1>&6
  1220.       SFLAGS="-Wa,+DA1.1"
  1221. --- 1806,1823 ----
  1222.       path="hppa/hppa1_1/pa7100 hppa/hppa1_1 hppa"
  1223.       extra_functions="udiv_qrnnd"
  1224.           echo $ac_n "checking whether assembler understands +DA1.1 option""... $ac_c" 1>&6
  1225. ! echo "configure:1810: checking whether assembler understands +DA1.1 option" >&5
  1226.       OLD_CFLAGS=$CFLAGS
  1227.       CFLAGS="$CFLAGS -Wa,+DA1.1"
  1228.       cat > conftest.$ac_ext <<EOF
  1229. ! #line 1814 "configure"
  1230.   #include "confdefs.h"
  1231.   
  1232.   int main() {
  1233.   
  1234.   ; return 0; }
  1235.   EOF
  1236. ! if { (eval echo configure:1821: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1237.     rm -rf conftest*
  1238.     echo "$ac_t""yes" 1>&6
  1239.       SFLAGS="-Wa,+DA1.1"
  1240. ***************
  1241. *** 1922,1927 ****
  1242. --- 1919,1928 ----
  1243.       path="power powerpc32"
  1244.       SFLAGS="-Wa,-mppc"
  1245.       ;;
  1246. +   ppc750-*-rhapsody)
  1247. +     path="power powerpc32"
  1248. +     SFLAGS="-Wa,-mppc"
  1249. +     ;;
  1250.     ppc601-*-*)
  1251.       path="power powerpc32"
  1252.       ;;
  1253. ***************
  1254. *** 2536,2542 ****
  1255.   s%@mandir@%$mandir%g
  1256.   s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
  1257.   s%@INSTALL_DATA@%$INSTALL_DATA%g
  1258. - s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g
  1259.   s%@PACKAGE@%$PACKAGE%g
  1260.   s%@VERSION@%$VERSION%g
  1261.   s%@ACLOCAL@%$ACLOCAL%g
  1262. --- 2537,2542 ----
  1263. diff -cr ssh-1.2.27/gmp-2.0.2-ssh-2/configure.in ssh-1.2.27MacOSX/gmp-2.0.2-ssh-2/configure.in
  1264. *** ssh-1.2.27/gmp-2.0.2-ssh-2/configure.in    Mon Feb 22 01:59:06 1999
  1265. --- ssh-1.2.27MacOSX/gmp-2.0.2-ssh-2/configure.in    Wed Jun 23 21:33:40 1999
  1266. ***************
  1267. *** 189,194 ****
  1268. --- 189,198 ----
  1269.       path="power powerpc32"
  1270.       SFLAGS="-Wa,-mppc"
  1271.       ;;
  1272. +   ppc750-*-rhapsody)
  1273. +     path="power powerpc32"
  1274. +     SFLAGS="-Wa,-mppc"
  1275. +     ;;
  1276.     ppc601-*-*)
  1277.       path="power powerpc32"
  1278.       ;;
  1279. diff -cr ssh-1.2.27/gmp-2.0.2-ssh-2/gmp-impl.h ssh-1.2.27MacOSX/gmp-2.0.2-ssh-2/gmp-impl.h
  1280. *** ssh-1.2.27/gmp-2.0.2-ssh-2/gmp-impl.h    Fri Mar 27 12:06:09 1998
  1281. --- ssh-1.2.27MacOSX/gmp-2.0.2-ssh-2/gmp-impl.h    Wed Jun 23 21:32:53 1999
  1282. ***************
  1283. *** 254,261 ****
  1284.       (q) = _xh - q1;                            \
  1285.     } while (0)
  1286.   
  1287.   #if defined (__GNUC__) && !defined(NeXT)
  1288. ! /* Define stuff for longlong.h.  */
  1289.   typedef unsigned int UQItype    __attribute__ ((mode (QI)));
  1290.   typedef      int SItype    __attribute__ ((mode (SI)));
  1291.   typedef unsigned int USItype    __attribute__ ((mode (SI)));
  1292. --- 254,262 ----
  1293.       (q) = _xh - q1;                            \
  1294.     } while (0)
  1295.   
  1296. + /*&
  1297.   #if defined (__GNUC__) && !defined(NeXT)
  1298. ! // Define stuff for longlong.h. 
  1299.   typedef unsigned int UQItype    __attribute__ ((mode (QI)));
  1300.   typedef      int SItype    __attribute__ ((mode (SI)));
  1301.   typedef unsigned int USItype    __attribute__ ((mode (SI)));
  1302. ***************
  1303. *** 266,271 ****
  1304. --- 267,278 ----
  1305.   typedef      long SItype;
  1306.   typedef unsigned long USItype;
  1307.   #endif
  1308. + */
  1309. + typedef unsigned char UQItype;
  1310. + typedef          long SItype;
  1311. + typedef unsigned long USItype;
  1312.   
  1313.   typedef mp_limb_t UWtype;
  1314.   typedef unsigned int UHWtype;
  1315. Only in ssh-1.2.27MacOSX: osfc2.c
  1316. Only in ssh-1.2.27: snprintf.c
  1317. Only in ssh-1.2.27: snprintf.h
  1318. Only in ssh-1.2.27: sshsia.c
  1319. Only in ssh-1.2.27: sshsia.h
  1320.