diff options
author | ormorph <roma251078@mail.ru> | 2023-11-20 08:31:33 +0300 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-20 15:17:09 +0900 |
commit | 3156b549d754626b9ec2363986d912e521a32d21 (patch) | |
tree | 40db24cc0dce08ef6da8dc5f3f2312a3df8e415c | |
parent | 4ad61009a11dd9eb8b60cd355faa72621cd90da7 (diff) | |
download | tdeutils-3156b549d754626b9ec2363986d912e521a32d21.tar.gz tdeutils-3156b549d754626b9ec2363986d912e521a32d21.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>
(cherry picked from commit e43d2c557372a04ba78dcbbeb2ac17b732f7107b)
-rw-r--r-- | ConfigureChecks.cmake | 10 |
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 ##################################### |