Add hidden conf.h, missed in an earlier commit
authortb <tb@openbsd.org>
Tue, 9 Apr 2024 14:57:28 +0000 (14:57 +0000)
committertb <tb@openbsd.org>
Tue, 9 Apr 2024 14:57:28 +0000 (14:57 +0000)
lib/libcrypto/hidden/openssl/conf.h [new file with mode: 0644]

diff --git a/lib/libcrypto/hidden/openssl/conf.h b/lib/libcrypto/hidden/openssl/conf.h
new file mode 100644 (file)
index 0000000..9408a54
--- /dev/null
@@ -0,0 +1,74 @@
+/* $OpenBSD: conf.h,v 1.1 2024/04/09 14:57:28 tb Exp $ */
+/*
+ * Copyright (c) 2024 Bob Beck <beck@openbsd.org>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifndef _LIBCRYPTO_CONF_H
+#define _LIBCRYPTO_CONF_H
+
+#ifndef _MSC_VER
+#include_next <openssl/conf.h>
+#else
+#include "../include/openssl/conf.h"
+#endif
+#include "crypto_namespace.h"
+
+LCRYPTO_USED(CONF_set_default_method);
+LCRYPTO_USED(CONF_set_nconf);
+LCRYPTO_USED(CONF_load);
+LCRYPTO_USED(CONF_load_fp);
+LCRYPTO_USED(CONF_load_bio);
+LCRYPTO_USED(CONF_get_section);
+LCRYPTO_USED(CONF_get_string);
+LCRYPTO_USED(CONF_get_number);
+LCRYPTO_USED(CONF_free);
+LCRYPTO_USED(CONF_dump_fp);
+LCRYPTO_USED(CONF_dump_bio);
+LCRYPTO_USED(OPENSSL_config);
+LCRYPTO_USED(OPENSSL_no_config);
+LCRYPTO_USED(NCONF_new);
+LCRYPTO_USED(NCONF_default);
+LCRYPTO_USED(NCONF_WIN32);
+LCRYPTO_USED(NCONF_free);
+LCRYPTO_USED(NCONF_free_data);
+LCRYPTO_USED(NCONF_load);
+LCRYPTO_USED(NCONF_load_fp);
+LCRYPTO_USED(NCONF_load_bio);
+LCRYPTO_USED(NCONF_get_section);
+LCRYPTO_USED(NCONF_get_string);
+LCRYPTO_USED(NCONF_get_number_e);
+LCRYPTO_USED(NCONF_dump_fp);
+LCRYPTO_USED(NCONF_dump_bio);
+LCRYPTO_USED(CONF_modules_load);
+LCRYPTO_USED(CONF_modules_load_file);
+LCRYPTO_USED(CONF_modules_unload);
+LCRYPTO_USED(CONF_modules_finish);
+LCRYPTO_USED(CONF_modules_free);
+LCRYPTO_USED(CONF_module_add);
+LCRYPTO_USED(CONF_imodule_get_name);
+LCRYPTO_USED(CONF_imodule_get_value);
+LCRYPTO_USED(CONF_imodule_get_usr_data);
+LCRYPTO_USED(CONF_imodule_set_usr_data);
+LCRYPTO_USED(CONF_imodule_get_module);
+LCRYPTO_USED(CONF_imodule_get_flags);
+LCRYPTO_USED(CONF_imodule_set_flags);
+LCRYPTO_USED(CONF_module_get_usr_data);
+LCRYPTO_USED(CONF_module_set_usr_data);
+LCRYPTO_USED(CONF_get1_default_config_file);
+LCRYPTO_USED(CONF_parse_list);
+LCRYPTO_USED(OPENSSL_load_builtin_modules);
+LCRYPTO_USED(ERR_load_CONF_strings);
+
+#endif /* _LIBCRYPTO_CONF_H */