Conditionally compile XMSS code.

The XMSS code is currently experimental and, unlike the rest of OpenSSH
cannot currently be compiled with a c89 compiler.
diff --git a/xmss_hash.h b/xmss_hash.h
index 2fed730..e01960c 100644
--- a/xmss_hash.h
+++ b/xmss_hash.h
@@ -1,3 +1,4 @@
+#ifdef WITH_XMSS
 /*
 hash.h version 20160722
 Andreas Hülsing
@@ -17,3 +18,4 @@
 int hash_f(unsigned char *out, const unsigned char *in, const unsigned char *pub_seed, uint32_t addr[8], const unsigned int n);
 
 #endif
+#endif /* WITH_XMSS */