summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2021-04-30 12:18:00 -0400
committerTomas Mraz <tomas@openssl.org>2021-05-05 13:11:35 +0200
commitf7050588bc76901e0a147c158e64ac3140dc8bfd (patch)
tree76a0453a8781c5e9ed61553d9086fa0ead7a4bca /include
parent3fb985fd04611082bbfc3622a078e8c5e5edb378 (diff)
Add .includedir pragma
Also add a negative test, and fix typo's. Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15090)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/conf.h.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/openssl/conf.h.in b/include/openssl/conf.h.in
index b82a915626..ee7cbb00e4 100644
--- a/include/openssl/conf.h.in
+++ b/include/openssl/conf.h.in
@@ -119,7 +119,9 @@ struct conf_st {
CONF_METHOD *meth;
void *meth_data;
LHASH_OF(CONF_VALUE) *data;
- unsigned int flag_dollarid:1;
+ int flag_dollarid;
+ int flag_abspath;
+ char *includedir;
OSSL_LIB_CTX *libctx;
};