From 19c153c15eff3ed7fdc19205693639201f96c66f Mon Sep 17 00:00:00 2001 From: Josselin Poiret Date: Sun, 18 Feb 2024 12:07:09 +0100 Subject: [PATCH] gnu: talloc: Remove reference to crypt. * gnu/packages/samba.scm (talloc): Remove reference to crypt header. Change-Id: I370069acdd7992f2660aae0b1840ea7756befe13 --- gnu/packages/samba.scm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gnu/packages/samba.scm b/gnu/packages/samba.scm index ce707a8912..bf92b210c3 100644 --- a/gnu/packages/samba.scm +++ b/gnu/packages/samba.scm @@ -322,6 +322,14 @@ Desktops into Active Directory environments using the winbind daemon.") (arguments '(#:phases (modify-phases %standard-phases + (add-after 'unpack 'remove-crypt-reference + ;; The following is needed because Python.h propagates + ;; HAVE_CRYPT_H, which is then seen from lib/replace/ but talloc + ;; doesn't need it at all. + (lambda _ + (substitute* "lib/replace/replace.h" + (("#include ") + "")))) (replace 'configure (lambda* (#:key outputs #:allow-other-keys) ;; talloc uses a custom configuration script that runs a Python