]> andersk Git - gssapi-openssh.git/commitdiff
include GSI, KRB5, and MECHGLUE in version string based on configure
authorjbasney <jbasney>
Sat, 17 Jan 2004 17:24:17 +0000 (17:24 +0000)
committerjbasney <jbasney>
Sat, 17 Jan 2004 17:24:17 +0000 (17:24 +0000)
options for more debugging info

openssh/version.h

index 792cdc757656f5ad00410140238546c37e4c5b93..5900aedcb793ef2ffdd39928ee89d09e30150aa3 100644 (file)
@@ -1,4 +1,23 @@
 /* $OpenBSD: version.h,v 1.39 2003/09/16 21:02:40 markus Exp $ */
 
+#ifdef GSI
+#define GSI_VERSION    " GSI"
+#else
+#define GSI_VERSION    ""
+#endif
+
+#ifdef KRB5
+#define KRB5_VERSION   " KRB5"
+#else
+#define KRB5_VERSION   ""
+#endif
+
+#ifdef MECHGLUE
+#define MGLUE_VERSION  " MECHGLUE"
+#else
+#define MGLUE_VERSION  ""
+#endif
+
 #define SSH_VERSION    "OpenSSH_3.7.1p2"       \
-                       " NCSA_GSSAPI_20040117"
+                       " NCSA_GSSAPI_20040117" \
+                       GSI_VERSION KRB5_VERSION MGLUE_VERSION
This page took 0.032715 seconds and 5 git commands to generate.