blob: 997a4010c3287a016590f105b3a47badd32cdcac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- a/ConfigureChecks.cmake 2023-11-20 07:43:31.808978636 +0300
+++ b/ConfigureChecks.cmake 2023-11-20 07:47:59.756967430 +0300
@@ -28,13 +28,9 @@
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 #####################################
|