diff options
| author | Jonathan Bauer | 2026-01-27 11:03:28 +0100 |
|---|---|---|
| committer | Jonathan Bauer | 2026-01-27 11:03:28 +0100 |
| commit | 31770241f927b65ca40c808c0a78fadd3368c967 (patch) | |
| tree | 2b2130813e16b379caea2ae8695c025a3884b544 | |
| parent | Fix for RHEL 10.1 (diff) | |
| download | xloop-master.tar.gz xloop-master.tar.xz xloop-master.zip | |
| -rw-r--r-- | src/kernel/xloop_main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/kernel/xloop_main.c b/src/kernel/xloop_main.c index e963c3b..4b43b63 100644 --- a/src/kernel/xloop_main.c +++ b/src/kernel/xloop_main.c @@ -6,6 +6,8 @@ #if RHEL_CHECK_VERSION(RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(10, 1)) #include "xloop_main_6.14.c" // Make a copy once this diverges! +#elif RHEL_CHECK_VERSION(RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(9, 7)) +#include "xloop_main_6.14.c" #elif RHEL_CHECK_VERSION(RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(9, 6)) #include "xloop_main_6.11.c" #elif RHEL_CHECK_VERSION(RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(9, 0)) |
