]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: drop workaround for CentOS 8
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 6 Jan 2025 16:53:50 +0000 (01:53 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 6 Jan 2025 17:06:04 +0000 (02:06 +0900)
CentOS 8 and RHEL 8 reached EOL.

meson.build

index 933133e6b11dc9702f62a34a8c5f0b6e9215212f..881dfb43067df5865409604797224d4a09577a23 100644 (file)
@@ -1351,10 +1351,6 @@ libgcrypt = dependency('libgcrypt',
                        required : feature)
 libgpg_error = dependency('gpg-error',
                           required : feature.disabled() ? feature : false)
-if not libgpg_error.found()
-        # CentOS 8 does not provide the .pc file.
-        libgpg_error = cc.find_library('gpg-error', required : feature)
-endif
 
 have = libgcrypt.found() and libgpg_error.found()
 if not have