From 216269db3f9e5c204f68a2f8d405abf21832578e Mon Sep 17 00:00:00 2001 From: Davide Madrisan Date: Thu, 9 Nov 2023 22:28:15 +0100 Subject: [PATCH] packages: add support for Fedora 39 Signed-off-by: Davide Madrisan --- .github/workflows/build-checks.yml | 2 +- README.md | 8 ++++---- packages/Makefile.am | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-checks.yml b/.github/workflows/build-checks.yml index 0d844cb..12f7464 100644 --- a/.github/workflows/build-checks.yml +++ b/.github/workflows/build-checks.yml @@ -20,8 +20,8 @@ jobs: - 'alpine:3.18' - 'debian:11' - 'debian:12' - - 'fedora:37' - 'fedora:38' + - 'fedora:39' - 'ubuntu:20.04' - 'ubuntu:22.04' diff --git a/README.md b/README.md index d891c62..645bb1a 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ Example (RHEL5 and RHEL6 and other old distributions): If you want to compile the code with a C compiler different from the system default, you can set the environment variable CC accordingly. Here's an example: - CC=clang-15 ./configure --libexecdir=/usr/lib/nagios/plugins + CC=clang-17 ./configure --libexecdir=/usr/lib/nagios/plugins ## Installation @@ -114,13 +114,13 @@ This package is known to compile with: * gcc 4.4 (RHEL6 / CentOS 6), * gcc 4.8 (RHEL7 / CentOS 7), * gcc 3.x, 5.1, 5.3, 6.3, 7-13 (openmamba GNU/Linux, Debian 8+, Fedora 25+), -* clang 3.7, 3.8, 4.9, 5, 6, 7, 8, 10-16 (openmamba GNU/Linux, Fedora 25+), +* clang 3.7, 3.8, 4.9, 5, 6, 7, 8, 10-17 (openmamba GNU/Linux, Fedora 25+), List of the Linux kernels that have been successfully tested: * 2.6.18, 2.6.32, * 3.10, 3.14, 3.18, * 4.2, 4.4, 4,9, 4.14, 4.15, 4.16, 4.19 -* 5.6, 5.7, 5.8, 5.12-5.18, 6.1-6.4 +* 5.6, 5.7, 5.8, 5.12-5.18, 6.1-6.5 The Nagios Plugins Linux are regularly tested on * Alpine Linux (musl libc), @@ -140,9 +140,9 @@ CentOS Stream 9 | `make -C packages centos-stream-9` Debian 10 (Buster) | `make -C packages debian-buster` Debian 11 (Bullseye) | `make -C packages debian-bullseye` Debian 12 (Bookworm) | `make -C packages debian-bookworm` -Fedora 36 | `make -C packages fedora-36` Fedora 37 | `make -C packages fedora-37` Fedora 38 | `make -C packages fedora-38` +Fedora 39 | `make -C packages fedora-39` Fedora Rawhide | `make -C packages fedora-rawhide` Rocky Linux 8 | `make -C packages rockylinux-8` Rocky Linux 9 | `make -C packages rockylinux-9` diff --git a/packages/Makefile.am b/packages/Makefile.am index 093753b..948f02f 100644 --- a/packages/Makefile.am +++ b/packages/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -## Copyright (c) 2016-2019 Davide Madrisan +## Copyright (c) 2016-2024 Davide Madrisan ## ## This program is free software: you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -50,9 +50,9 @@ debian-12: debian-bookworm debian-latest: debian-bookworm TARGETS_FEDORA = \ - fedora-36 fedora-37 fedora-38 \ + fedora-37 fedora-38 fedora-39 \ fedora-rawhide -fedora-latest: fedora-38 +fedora-latest: fedora-39 TARGETS_ROCKY = \ rockylinux-8 \