search for: skey_keyinfo

Displaying 8 results from an estimated 8 matches for "skey_keyinfo".

2002 Feb 11
0
[PATCH]: RHL72 --with-skey linking problems
Hi, On Red Hat Linux 7.2, it appears one cannot compile with --with-skey; configure fails with: checking for skey_keyinfo... no configure: error: ** Incomplete or missing s/key libraries. even though skey 1.1.5 libraries are installed from the location mentioned in INSTALL. This has also happened with Solaris it seems: http://bugzilla.mindrot.org/show_bug.cgi?id=45 A patch to configure.ac is attached here and to...
2000 Jul 26
1
compiling openssh with skey? Fails on redhat linux
...I configure openssh-2.1.1p4 with the --with-skey option on a Redhat Linux 6.2 system which has openssl-0.9.5a and skey (the logdaemon 6.2 version) installed, the compile fails with the following errors: auth1.c: In function `do_authloop': auth1.c:331: warning: implicit declaration of function `skey_keyinfo' auth1.c:331: warning: initialization makes pointer from integer without a cast auth1.c:353: warning: implicit declaration of function `skey_haskey' auth1.c:354: warning: implicit declaration of function `skey_passcheck' session.c: In function `do_authenticated': session.c:159: war...
2002 Apr 03
2
cross compilation?
...r user wants S/Key support SKEY_MSG="no" AC_ARG_WITH(skey, @@ -469,11 +455,13 @@ SKEY_MSG="yes" AC_MSG_CHECKING([for s/key support]) - AC_TRY_RUN( + AC_TRY_LINK( [ -#include <stdio.h> -#include <skey.h> -int main() { char *ff = skey_keyinfo(""); ff=""; return 0; } + #include <stdio.h> + #include <skey.h> + ], + [ + char *ff = skey_keyinfo(""); ff=""; ], [AC_MSG_RESULT(yes)], [ @@ -625,6 +613,10 @@ AC_MSG_RESULT(no) AC_DEFINE(BROKEN...
2000 Mar 07
1
Fail to compile on FreeBSD 3.3
...auth-passwd.o auth-rsa.o auth-rh-rsa.o pty.o log-server.o login.o servconf.o serverloop.o bsd-login.o md5crypt.o -L. -L/usr/local/ssl/lib -lssh -lz -lcrypto -lutil -lpam -lskey -lwrap sshd.o: In function `do_authloop': /usr/local/src/openssh-1.2.2/sshd.c(.text+0x1d68): undefined reference to `skey_keyinfo' /usr/local/src/openssh-1.2.2/sshd.c(.text+0x1d8a): undefined reference to `skey_fake_keyinfo' /usr/local/src/openssh-1.2.2/sshd.c(.text+0x1e52): undefined reference to `skey_haskey' /usr/local/src/openssh-1.2.2/sshd.c(.text+0x1e64): undefined reference to `skey_passcheck' sshd.o: I...
2002 Jan 31
3
[Bug 45] configure refines a function in skey, which then bombs
....org/show_bug.cgi?id=45 ------- Additional Comments From tim at multitalents.net 2002-01-31 16:37 ------- Autoconf uses char (*f) (); in all it's AC_CHECK_FUNC tests. Seems like skey should be fixed. Feel free to provide a patch to autoconf.ac that uses AC_TRY_RUN instead of AC_CHECK_FUNC(skey_keyinfo, ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2001 Nov 05
1
FYI dsa_lib.c and dh_lib.c in openssl-0.9.6b and latest snapshot
...compile. If nobody else has these problems then something else must be wrong on my machine, but I don't see what. I built the following from source with Sun Forte 6 update 2: zlib 1.1.3 openssl 0.9.6b tcp_wrappers skey libraries prngd0.9.23 (Oh and skey does not work...it fails checking for skey_keyinfo... no config error missing s/key libraries...I was able to compile and install skey without problems as long as I used gnu-make...but openssh snapshot from 11/4 can not find the libraries...so I think something is wrong there as well.) The compilation options I used for various code are documented...
2001 Feb 13
1
configure.in reorder patch
...o" ; then + + if test "x$withval" != "xyes" ; then + CPPFLAGS="$CPPFLAGS -I${withval}/include" + LDFLAGS="$LDFLAGS -L${withval}/lib" + fi + + AC_DEFINE(SKEY) + LIBS="-lskey $LIBS" + SKEY_MSG="yes" + + AC_CHECK_FUNC(skey_keyinfo, + [], + [ + AC_MSG_ERROR([** Incomplete or missing s/key libraries.]) + ]) + fi + ] +) + +# Check whether user wants TCP wrappers support +TCPW_MSG="no" +AC_ARG_WITH(tcp-wrappers, + [ --with-tcp-wrappers Enable tcpwrappers support], + [ + if test "x$withval&quot...
2000 Nov 14
14
New snapshot
...short int va_args are promoted to type int. Report and fix from Dan Astoorian <djast at cs.toronto.edu> - (djm) Hardwire sysconfdir in RPM spec files as some RPM versions get it wrong. Report from Bennett Todd <bet at rahul.net> 20001110 - (bal) Fixed dropped answer from skey_keyinfo() in auth1.c - (bal) Changed from --with-skey to --with-skey=PATH in configure.in - (bal) Added in check to verify S/Key library is being detected in configure.in - (bal) next-posix.h - added another prototype wrapped in POSIX ifdef/endif. Patch by Mark Miller <markm at swoon.net>...