- (djm) [ssh-dss.c] Include openssl/dsa.h for DSA_SIG
diff --git a/ChangeLog b/ChangeLog
index a9bef01..3072f88 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
 20140819
  - (djm) [serverloop.c] Fix syntax error on Cygwin; from Corinna Vinschen
  - (djm) [sshbuf.h] Fix compilation on systems without OPENSSL_HAS_ECC.
+ - (djm) [ssh-dss.c] Include openssl/dsa.h for DSA_SIG
 
 20140811
  - (djm) [myproposal.h] Make curve25519 KEX dependent on
diff --git a/ssh-dss.c b/ssh-dss.c
index 02d1ec2..9643d90 100644
--- a/ssh-dss.c
+++ b/ssh-dss.c
@@ -28,6 +28,7 @@
 #include <sys/types.h>
 
 #include <openssl/bn.h>
+#include <openssl/dsa.h>
 #include <openssl/evp.h>
 
 #include <stdarg.h>