diff options
author | ormorph <roma251078@mail.ru> | 2023-11-20 08:31:33 +0300 |
---|---|---|
committer | ormorph <roma251078@mail.ru> | 2023-11-20 08:31:47 +0300 |
commit | e43d2c557372a04ba78dcbbeb2ac17b732f7107b (patch) | |
tree | f511a81a71bac16c6362c02888b14f3b128740ce | |
parent | d972c5bd57ec4cf4437a49c1160a0975a61f7f56 (diff) | |
download | tdeutils-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>
-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 ##################################### |