meson: drop workaround for CentOS 8

CentOS 8 and RHEL 8 reached EOL.
This commit is contained in:
Yu Watanabe
2025-01-07 01:53:50 +09:00
parent 7a0c3923fe
commit 066e603ac6

View 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