- Integrated patch from Dan Brosemer <odin@linuxfreak.com>
   - Build fixes
   - Autoconf
   - Change binary names to open*

 - Fixed autoconf script to detect PAM on RH6.1
 - Added tests for libpwdb, and OpenBSD functions to autoconf (not used yet)
diff --git a/ssh-agent.c b/ssh-agent.c
index 19165b8..562f3cc 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -13,8 +13,9 @@
 
 */
 
+#include "config.h"
 #include "includes.h"
-RCSID("$Id: ssh-agent.c,v 1.1 1999/10/27 03:42:45 damien Exp $");
+RCSID("$Id: ssh-agent.c,v 1.2 1999/10/28 03:25:17 damien Exp $");
 
 #include "ssh.h"
 #include "rsa.h"
@@ -26,7 +27,12 @@
 #include "getput.h"
 #include "mpaux.h"
 
+#ifdef HAVE_OPENSSL
 #include <openssl/md5.h>
+#endif
+#ifdef HAVE_SSL
+#include <ssl/md5.h>
+#endif
 
 typedef struct
 {