commit | 0e2cc42cfb4d09c19140f89853e3f0cf4d8c5142 | [log] [tgz] |
---|---|---|
author | Richard Levitte <levitte@openssl.org> | Wed Oct 09 15:36:23 2002 +0000 |
committer | Richard Levitte <levitte@openssl.org> | Wed Oct 09 15:36:23 2002 +0000 |
tree | 68305b60303d8c47854ea49b0c52dbecb214555e | |
parent | 1e5c205ccbcebdb5143fd4ebf6627143c51ea4e8 [diff] [blame] |
Make sure that the 'config' variable is correctly defined and declared for monolithic as well as non-monolithic biuld. More work is probably needed in this area. PR: 144
diff --git a/apps/apps.h b/apps/apps.h index 32a7960..dae52bd 100644 --- a/apps/apps.h +++ b/apps/apps.h
@@ -144,8 +144,10 @@ #define MAIN(a,v) main(a,v) #ifndef NON_MAIN +CONF *config=NULL; BIO *bio_err=NULL; #else +extern CONF *config; extern BIO *bio_err; #endif