Secure Shell 2 for Mac OS X Server (PowerPC only) April 17, 1999 This package contains SSH2, a secure telnet/rsh replacement. On installation, it will generate your host keypair if they do not already exist in /etc/ssh2. The binary is built from the following configuration: ./configure --with-etcdir=/private/etc --mandir=/usr/local/share/man The patch to make the distributed ssh-2.0.12 build on Mac OS X Server is: diff -cr ssh-2.0.12/config.guess ssh-2.0.12-rhapsody/config.guess *** ssh-2.0.12/config.guess Fri Jan 29 06:28:44 1999 --- ssh-2.0.12-rhapsody/config.guess Sat Apr 17 01:44:30 1999 *************** *** 480,485 **** --- 480,488 ---- echo mips-unknown-sysv${UNAME_RELEASE} fi exit 0 ;; + *:Rhapsody:*:*) + echo `arch`-apple-rhapsody${UNAME_RELEASE} + exit 0 ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 diff -cr ssh-2.0.12/config.sub ssh-2.0.12-rhapsody/config.sub *** ssh-2.0.12/config.sub Fri Jan 29 06:28:44 1999 --- ssh-2.0.12-rhapsody/config.sub Sat Apr 17 01:39:06 1999 *************** *** 900,905 **** --- 900,908 ---- ;; -none) ;; + -rhapsody*) + os=-rhapsody + ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` Since this patch just had to modify the configure files, it should be a useful starting point for any other source that uses autoconf and doesn't know about Mac OS X Server. Mike Laster