diff options
author | ormorph <roma251078@mail.ru> | 2024-04-26 07:38:58 +0300 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2024-04-29 00:52:28 +0200 |
commit | 08657933720cc4345cdf62e1d42f199d8225e458 (patch) | |
tree | 1c1f931fda2927464f64bf219ba43a5377fb06c5 /trinity-base/kcheckpass | |
parent | 4a5c1eb2f15a77abeecabb25019287f589d6b326 (diff) | |
download | tde-packaging-gentoo-08657933720cc4345cdf62e1d42f199d8225e458.tar.gz tde-packaging-gentoo-08657933720cc4345cdf62e1d42f199d8225e458.zip |
Removing residual files of version 14.1.0
Signed-off-by: ormorph <roma251078@mail.ru>
(cherry picked from commit 929431cac813bc953a1e646fe36d1cfbc4a68f4b)
Diffstat (limited to 'trinity-base/kcheckpass')
-rw-r--r-- | trinity-base/kcheckpass/files/kcheckpass-strlcpy-14.1.0.patch | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/trinity-base/kcheckpass/files/kcheckpass-strlcpy-14.1.0.patch b/trinity-base/kcheckpass/files/kcheckpass-strlcpy-14.1.0.patch deleted file mode 100644 index 8901b1b2..00000000 --- a/trinity-base/kcheckpass/files/kcheckpass-strlcpy-14.1.0.patch +++ /dev/null @@ -1,54 +0,0 @@ ---- a/config.h.cmake 2023-07-04 20:10:53.550250219 +0300 -+++ b/config.h.cmake 2023-07-04 20:18:18.312261752 +0300 -@@ -130,6 +130,33 @@ - // kcontrol/input - #cmakedefine HAVE_LIBUSB 1 - -+// ksysguard, kcheckpass -+#cmakedefine HAVE_STRLCAT 1 -+#cmakedefine HAVE_STRLCAT_PROTO 1 -+#cmakedefine HAVE_STRLCPY 1 -+#cmakedefine HAVE_STRLCPY_PROTO 1 -+ -+#if !defined(HAVE_STRLCAT_PROTO) -+#ifdef __cplusplus -+extern "C" { -+#endif -+unsigned long strlcat(char*, const char*, unsigned long); -+#ifdef __cplusplus -+} -+#endif -+#endif -+ -+#if !defined(HAVE_STRLCPY_PROTO) -+#ifdef __cplusplus -+extern "C" { -+#endif -+unsigned long strlcpy(char*, const char*, unsigned long); -+#ifdef __cplusplus -+} -+#endif -+#endif -+ -+ - // tdeprint - #cmakedefine HAVE_SIGACTION 1 - #cmakedefine HAVE_SIGSET 1 ---- a/ConfigureChecks.cmake 2023-07-04 20:10:53.550250219 +0300 -+++ b/ConfigureChecks.cmake 2023-07-04 20:16:46.905259381 +0300 -@@ -381,6 +381,15 @@ - endif( ) - - -+# strlcat, strlcpy -+if( BUILD_KSYSGUARD OR BUILD_KCHECKPASS ) -+ check_function_exists( strlcat HAVE_STRLCAT ) -+ check_symbol_exists( strlcat "string.h" HAVE_STRLCAT_PROTO ) -+ check_function_exists( strlcpy HAVE_STRLCPY ) -+ check_symbol_exists( strlcpy "string.h" HAVE_STRLCPY_PROTO ) -+endif( ) -+ -+ - # getifaddrs (kcontrol, tdm) - if( BUILD_KCONTROL OR BUILD_TDM ) - check_function_exists( getifaddrs HAVE_GETIFADDRS ) |