- (djm) [sshbuf-getput-crypto.c] Fix compilation when OpenSSL lacks ECC
diff --git a/sshbuf-getput-crypto.c b/sshbuf-getput-crypto.c
index cfe6f79..74351d3 100644
--- a/sshbuf-getput-crypto.c
+++ b/sshbuf-getput-crypto.c
@@ -24,7 +24,9 @@
 #include <string.h>
 
 #include <openssl/bn.h>
-#include <openssl/ec.h>
+#ifdef OPENSSL_HAS_ECC
+# include <openssl/ec.h>
+#endif /* OPENSSL_HAS_ECC */
 
 #include "ssherr.h"
 #include "sshbuf.h"