From e43d2c557372a04ba78dcbbeb2ac17b732f7107b Mon Sep 17 00:00:00 2001 From: ormorph Date: Mon, 20 Nov 2023 08:31:33 +0300 Subject: [PATCH] Solving the TDE/tde-packaging-gentoo#313 problem. Glibc-2.38 adds new functions strlcat and strlcpy. Signed-off-by: ormorph --- ConfigureChecks.cmake | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 0a91701..018df12 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -28,13 +28,9 @@ if( WITH_GCC_VISIBILITY ) tde_setup_gcc_visibility( ) endif( ) - -##### ark ####################################### - -if( BUILD_ARK ) - check_symbol_exists( strlcpy string.h HAVE_STRLCPY_PROTO ) - check_symbol_exists( strlcat string.h HAVE_STRLCAT_PROTO ) -endif( BUILD_ARK ) +# strlcat and strlcpy check +check_symbol_exists( strlcpy string.h HAVE_STRLCPY_PROTO ) +check_symbol_exists( strlcat string.h HAVE_STRLCAT_PROTO ) ##### kcalc #####################################