Here are some problems with the latest snapshot on Mac OS X: I am by no means an autoconf expert, but here is what happens after a "autoreconf": autoconf: Undefined macros: configure.in:1291:AC_CHECK_MEMBERS([struct stat.st_blksize]) configure.in:2168:AC_CONFIG_FILES([Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds]) configure.in:26:AC_SYS_LARGEFILE configure.in:4:AC_CONFIG_SRCDIR([ssh.c]) /usr/bin/autoheader: Symbol `socklen_t' is not covered by /usr/share/autoconf/acconfig.h ./acconfig.h next, the results from running "configure": creating cache ./config.cache ./configure: command not found: AC_CONFIG_SRCDIR(ssh.c) [606] . . . ./configure: command not found: AC_SYS_LARGEFILE [1403] . . . ./configure: command not found: AC_CHECK_MEMBERS(struct stat.st_blksize) [7125] . . . ./configure: no such file or directory: AC_CONFIG_FILES(Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds) [9802] There seems to be a pattern here.. but what needs to be fixed? ====Mark Miller markm68k at yahoo.com __________________________________________________ Do You Yahoo!? Make a great connection at Yahoo! Personals. http://personals.yahoo.com
You are on the latest autoconf..RIGHT If not you need to be. - Ben On Tue, 23 Oct 2001, Mark Miller wrote:> Here are some problems with the latest snapshot on Mac > OS X: > > I am by no means an autoconf expert, but here is what > happens after a "autoreconf": > > autoconf: Undefined macros: > configure.in:1291:AC_CHECK_MEMBERS([struct > stat.st_blksize]) > configure.in:2168:AC_CONFIG_FILES([Makefile > openbsd-compat/Makefile scard/Makefile ssh_prng_cmds]) > configure.in:26:AC_SYS_LARGEFILE > configure.in:4:AC_CONFIG_SRCDIR([ssh.c]) > /usr/bin/autoheader: Symbol `socklen_t' is not covered > by /usr/share/autoconf/acconfig.h ./acconfig.h > > > > next, the results from running "configure": > > creating cache ./config.cache > ./configure: command not found: > AC_CONFIG_SRCDIR(ssh.c) [606] > . > . > . > ./configure: command not found: AC_SYS_LARGEFILE > [1403] > . > . > . > ./configure: command not found: > AC_CHECK_MEMBERS(struct stat.st_blksize) [7125] > . > . > . > ./configure: no such file or directory: > AC_CONFIG_FILES(Makefile openbsd-compat/Makefile > scard/Makefile ssh_prng_cmds) [9802] > > > There seems to be a pattern here.. but what needs to > be fixed? > > > > > ====> Mark Miller > markm68k at yahoo.com > > __________________________________________________ > Do You Yahoo!? > Make a great connection at Yahoo! Personals. > http://personals.yahoo.com >
--- mouring at etoh.eviladmin.org wrote:> You are on the latest autoconf..RIGHTEgads! There is a version 2.52?! Wow, it looks like Darwin / Mac OS X comes with 2.13.> If not you need to be.Ok, that worked. Thanks, Ben. ====Mark Miller markm68k at yahoo.com __________________________________________________ Do You Yahoo!? Make a great connection at Yahoo! Personals. http://personals.yahoo.com
The option "host_key_alias" is purposely not filled by fill_default_options() in the readconf.c file: /* options->host_key_alias should not be set by default */ As a result, it causes problems (notably a bus error) in sshconnect.c: if (options.host_key_alias != NULL) { host = options.host_key_alias; debug("using hostkeyalias: %s", host); } When ssh tries to read the contents of options.host_key_alias, it pukes. So what happens now? ====Mark Miller markm68k at yahoo.com __________________________________________________ Do You Yahoo!? Make a great connection at Yahoo! Personals. http://personals.yahoo.com