mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
The isc_ossl_wrap API is intended to separate OpenSSL version specific code that needs to expose the libcrypto internals and keep isc_crypto clean.
16 lines
558 B
Meson
16 lines
558 B
Meson
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
#
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
# information regarding copyright ownership.
|
|
|
|
isc_srcset.add(
|
|
when: 'HAVE_OPENSSL_3',
|
|
if_true: files('ossl3.c', 'ossl_common.c'),
|
|
if_false: files('ossl1_1.c', 'ossl_common.c'),
|
|
)
|