From 4c4ff2e1f077786d85c47ceeec10340a864e17f1 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 10 Sep 2023 02:00:00 +0200 Subject: gnu: vsftpd: Fix build with recent OpenSSL. * gnu/packages/ftp.scm (vsftpd)[arguments]: Add "-Wno-deprecated-declarations" to CFLAGS. Reported by helioscultist in #guix. --- gnu/packages/ftp.scm | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gnu/packages/ftp.scm') diff --git a/gnu/packages/ftp.scm b/gnu/packages/ftp.scm index 5edbc412ea..80e346d658 100644 --- a/gnu/packages/ftp.scm +++ b/gnu/packages/ftp.scm @@ -266,6 +266,9 @@ directory comparison and more.") (arguments `(#:make-flags (list (string-append "CC=" ,(cc-for-target)) + ;; Work around, e.g., “ssl.c:149:7: error: ‘EC_KEY_free’ is + ;; deprecated: Since OpenSSL 3.0 [-Werror=deprecated-declarations]” + "CFLAGS=-Wno-deprecated-declarations" ;; vsf_findlibs.sh looks only for hard-coded {/usr,}/lib file names ;; that will never exist on Guix. Manage libraries ourselves. "LDFLAGS=-lcap -lpam" -- cgit v1.2.3