summaryrefslogtreecommitdiffstats
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorormorph <roma251078@mail.ru>2023-11-20 08:31:33 +0300
committerormorph <roma251078@mail.ru>2023-11-20 08:31:47 +0300
commite43d2c557372a04ba78dcbbeb2ac17b732f7107b (patch)
treef511a81a71bac16c6362c02888b14f3b128740ce /ConfigureChecks.cmake
parentd972c5bd57ec4cf4437a49c1160a0975a61f7f56 (diff)
downloadtdeutils-e43d2c557372a04ba78dcbbeb2ac17b732f7107b.tar.gz
tdeutils-e43d2c557372a04ba78dcbbeb2ac17b732f7107b.zip
Solving the TDE/tde-packaging-gentoo#313 problem.
Glibc-2.38 adds new functions strlcat and strlcpy. Signed-off-by: ormorph <roma251078@mail.ru>
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake10
1 files 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 #####################################