diff options
author | ormorph <roma251078@mail.ru> | 2023-12-31 18:39:26 +0300 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2024-01-01 03:01:33 +0100 |
commit | cf97bcc21d119c3e97091b222ed994a9f244a07b (patch) | |
tree | 6840ae0d3416e2ece90189a17a7b6d2b6a2f918c /trinity-base/tdesu | |
parent | e2b50265ef4d7c51281a602db3de3247254ca5b3 (diff) | |
download | tde-packaging-gentoo-cf97bcc21d119c3e97091b222ed994a9f244a07b.tar.gz tde-packaging-gentoo-cf97bcc21d119c3e97091b222ed994a9f244a07b.zip |
Adding patches for compatibility with glibc-2.38
Signed-off-by: ormorph <roma251078@mail.ru>
(cherry picked from commit 75781374864d2810908644e1ed2e5cd3835307d8)
Diffstat (limited to 'trinity-base/tdesu')
-rw-r--r-- | trinity-base/tdesu/files/tdebase-strlcpy.patch | 29 | ||||
-rw-r--r-- | trinity-base/tdesu/tdesu-14.1.1.ebuild | 5 |
2 files changed, 34 insertions, 0 deletions
diff --git a/trinity-base/tdesu/files/tdebase-strlcpy.patch b/trinity-base/tdesu/files/tdebase-strlcpy.patch new file mode 100644 index 00000000..c117154d --- /dev/null +++ b/trinity-base/tdesu/files/tdebase-strlcpy.patch @@ -0,0 +1,29 @@ +--- a/ConfigureChecks.cmake 2023-11-13 20:24:40.136525876 +0300 ++++ b/ConfigureChecks.cmake 2023-11-13 20:30:04.069534276 +0300 +@@ -23,6 +23,10 @@ + find_package( TQt ) + find_package( TDE ) + ++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 ) + + ##### look for the usb.ids file, Its location can be set EG: -DWITH_USBIDS="/opt/share/misc/usb.ids" + +@@ -387,15 +391,6 @@ + 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 ) diff --git a/trinity-base/tdesu/tdesu-14.1.1.ebuild b/trinity-base/tdesu/tdesu-14.1.1.ebuild index 72a37cf7..926a66d8 100644 --- a/trinity-base/tdesu/tdesu-14.1.1.ebuild +++ b/trinity-base/tdesu/tdesu-14.1.1.ebuild @@ -17,6 +17,11 @@ IUSE="sudo" DEPEND="sudo? ( app-admin/sudo )" RDEPEND="${DEPEND}" +src_prepare() { + eapply "${FILESDIR}/tdebase-strlcpy.patch" + trinity-meta-2_src_prepare +} + src_configure () { local mycmakeargs=( -DWITH_SUDO_TDESU_BACKEND="$(usex sudo)" |