aboutsummaryrefslogtreecommitdiff
path: root/apps/engine.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-01-30 17:39:26 +0000
committerRichard Levitte <levitte@openssl.org>2003-01-30 17:39:26 +0000
commit0b13e9f055d3f7be066dc2e89fc9f9822b12eca7 (patch)
tree633b5d3e4c9356eaf9816541aaa079a0c3be9194 /apps/engine.c
parent96f7065f6392e19f1449578aaeabb8dc39294fa7 (diff)
downloadopenssl-0b13e9f055d3f7be066dc2e89fc9f9822b12eca7.zip
openssl-0b13e9f055d3f7be066dc2e89fc9f9822b12eca7.tar.gz
openssl-0b13e9f055d3f7be066dc2e89fc9f9822b12eca7.tar.bz2
Add the possibility to build without the ENGINE framework.
PR: 287
Diffstat (limited to 'apps/engine.c')
-rw-r--r--apps/engine.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/engine.c b/apps/engine.c
index 1a22d5d..3b3464a 100644
--- a/apps/engine.c
+++ b/apps/engine.c
@@ -56,6 +56,8 @@
*
*/
+#ifndef OPENSSL_NO_ENGINE
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -526,3 +528,4 @@ end:
apps_shutdown();
OPENSSL_EXIT(ret);
}
+#endif