From 37678713007a4169a5439d14a2cf2251e3ba82ba Mon Sep 17 00:00:00 2001 From: Jacob Nevins Date: Tue, 28 Jul 2009 23:20:50 +0000 Subject: [PATCH] Include putty.h (and hence uxconfig.h) before testing for NO_GSSAPI, so that "./configure --without-gssapi" actually works. Spotted by Rob Shinn. [originally from svn r8608] --- unix/uxgss.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unix/uxgss.c b/unix/uxgss.c index f6ebf476..7bc6dca4 100644 --- a/unix/uxgss.c +++ b/unix/uxgss.c @@ -1,8 +1,9 @@ +#include "putty.h" + #ifndef NO_GSSAPI #include #include -#include "putty.h" #include "sshgss.h" #include "misc.h"