View | Details | Raw Unified | Return to bug 45
Collapse All | Expand All

(-)openssh/configure.ac (-2 / +9 lines)
Lines 507-515 Link Here
507
			LIBS="-lskey $LIBS"
507
			LIBS="-lskey $LIBS"
508
			SKEY_MSG="yes" 
508
			SKEY_MSG="yes" 
509
	
509
	
510
			AC_CHECK_FUNC(skey_keyinfo,
510
			AC_MSG_CHECKING([for s/key support])
511
				[],
511
			AC_TRY_RUN(
512
				[
512
				[
513
#include <stdio.h>
514
#include <skey.h>
515
int main() { char *ff = skey_keyinfo(""); ff=""; return 0; }
516
				],
517
				[AC_MSG_RESULT(yes)],
518
				[
519
					AC_MSG_RESULT(no)
513
					AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
520
					AC_MSG_ERROR([** Incomplete or missing s/key libraries.])
514
				])
521
				])
515
		fi
522
		fi

Return to bug 45