diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-09-08 17:14:58 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-09-08 17:14:58 +0000 |
commit | 9609dde09b19cf2d8f6a0c0866eb5b52552a45ac (patch) | |
tree | 7f1305c12dba860660fbb708316e354e7a6061b3 /usr.sbin | |
parent | 096f5c1cf5978b290dbd6ecd00fadf5effa5d803 (diff) |
missing include for evp.h; ok henning@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/httpd/src/main/http_main.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/httpd/src/main/http_main.c b/usr.sbin/httpd/src/main/http_main.c index 9dc60c7ab87..ff9e1a7364e 100644 --- a/usr.sbin/httpd/src/main/http_main.c +++ b/usr.sbin/httpd/src/main/http_main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: http_main.c,v 1.23 2002/09/04 12:28:42 henning Exp $ */ +/* $OpenBSD: http_main.c,v 1.24 2002/09/08 17:14:57 markus Exp $ */ /* ==================================================================== * The Apache Software License, Version 1.1 @@ -205,6 +205,10 @@ caddr_t create_shared_heap(const char *, size_t); caddr_t get_shared_heap(const char *); #endif +#ifdef MOD_SSL +#include <openssl/evp.h> +#endif + DEF_Explain /* Defining GPROF when compiling uses the moncontrol() function to |