From f06374e731108b0af09da2d4d06e7c5f907a3f77 Mon Sep 17 00:00:00 2001 From: Pierre Wendling Date: Tue, 12 Sep 2023 18:33:46 +0200 Subject: MSVC: Enable building ocspcheck. - Add `STDIN_FILENO` to compat unistd header. - Use quotes to include compat getopt header in the compat unistd. - Export additional symbols needed by ocspcheck (optarg, optind, ftruncate) --- crypto/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'crypto') diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index 6ff46c8..d61e607 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt @@ -778,6 +778,8 @@ endif() if(NOT HAVE_GETOPT) set(CRYPTO_SRC ${CRYPTO_SRC} compat/getopt_long.c) set(EXTRA_EXPORT ${EXTRA_EXPORT} getopt) + set(EXTRA_EXPORT ${EXTRA_EXPORT} optarg) + set(EXTRA_EXPORT ${EXTRA_EXPORT} optind) endif() if(NOT HAVE_GETPAGESIZE) -- cgit v1.2.3-55-g6feb