diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-09-10 02:00:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-09-10 02:00:00 +0200 |
commit | 4c4ff2e1f077786d85c47ceeec10340a864e17f1 (patch) | |
tree | a7a9be8c91c9ba770a646689a72ddee5e5910b19 /gnu/packages/code.scm | |
parent | 39db6489e8e7a6dc0e37c1d23345753a5cdf5cab (diff) | |
download | guix-4c4ff2e1f077786d85c47ceeec10340a864e17f1.tar guix-4c4ff2e1f077786d85c47ceeec10340a864e17f1.tar.gz |
gnu: vsftpd: Fix build with recent OpenSSL.
* gnu/packages/ftp.scm (vsftpd)[arguments]: Add "-Wno-deprecated-declarations"
to CFLAGS.
Reported by helioscultist in #guix.
Diffstat (limited to 'gnu/packages/code.scm')
-rw-r--r-- | gnu/packages/code.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index b716f32599..497b3bfd75 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm @@ -893,7 +893,7 @@ the C, C++, C++/CLI, Objective‑C, C#, and Java programming languages.") (define-public indent (package (name "indent") - (version "2.2.12") + (version "2.2.13") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/indent/indent-" version |