From 0503c812684359d40d7e957291226383eb51ebb7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Wed, 3 Jan 2024 16:49:30 -0500 Subject: [PATCH] python3-tkinter: glibc build requires libxcrypt-devel --- srcpkgs/python3-tkinter/template | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template index 06c9a1bf0f5..9d0a67c8ee1 100644 --- a/srcpkgs/python3-tkinter/template +++ b/srcpkgs/python3-tkinter/template @@ -30,6 +30,10 @@ license="Python-2.0" distfiles="https://www.python.org/ftp/python/${version%rc*}/Python-${version}.tar.xz" checksum=8dfb8f426fcd226657f9e2bd5f1e96e53264965176fa17d32658e873591aeb21 +if [ "$XBPS_TARGET_LIBC" = "glibc" ]; then + makedepends+=" libxcrypt-devel" +fi + if [ "$CROSS_BUILD" ]; then hostmakedepends+=" python3" configure_args+=" --with-build-python=python${py3_ver}"