doxygen: add v1.12.0 (#46752)
This commit is contained in:
parent
d3a0904790
commit
8f5af6eb7a
@ -20,6 +20,7 @@ class Doxygen(CMakePackage):
|
|||||||
|
|
||||||
license("GPL-2.0-or-later")
|
license("GPL-2.0-or-later")
|
||||||
|
|
||||||
|
version("1.12.0", sha256="5ca35e1258020df5fe8b21c3656aed156c317def4a81b7fe52f452edc9f35768")
|
||||||
version("1.11.0", sha256="1fea49c69e51fec3dd2599947f6d48d9b1268bd5115b1bb08dffefc1fd5d19ee")
|
version("1.11.0", sha256="1fea49c69e51fec3dd2599947f6d48d9b1268bd5115b1bb08dffefc1fd5d19ee")
|
||||||
version("1.10.0", sha256="795692a53136ca9bb9a6cd72656968af7858a78be7d6d011e12ab1dce6b9533c")
|
version("1.10.0", sha256="795692a53136ca9bb9a6cd72656968af7858a78be7d6d011e12ab1dce6b9533c")
|
||||||
version("1.9.8", sha256="77371e8a58d22d5e03c52729844d1043e9cbf8d0005ec5112ffa4c8f509ddde8")
|
version("1.9.8", sha256="77371e8a58d22d5e03c52729844d1043e9cbf8d0005ec5112ffa4c8f509ddde8")
|
||||||
@ -136,16 +137,18 @@ def determine_variants(cls, exes, version_str):
|
|||||||
def patch(self):
|
def patch(self):
|
||||||
if self.spec["iconv"].name != "libiconv":
|
if self.spec["iconv"].name != "libiconv":
|
||||||
return
|
return
|
||||||
# On Linux systems, iconv is provided by libc. Since CMake finds the
|
|
||||||
# symbol in libc, it does not look for libiconv, which leads to linker
|
if self.spec.satisfies("@:1.11"):
|
||||||
# errors. This makes sure that CMake always looks for the external
|
# On Linux systems, iconv is provided by libc. Since CMake finds the
|
||||||
# libconv instead.
|
# symbol in libc, it does not look for libiconv, which leads to linker
|
||||||
filter_file(
|
# errors. This makes sure that CMake always looks for the external
|
||||||
"check_function_exists(iconv_open ICONV_IN_GLIBC)",
|
# libconv instead.
|
||||||
"set(ICONV_IN_GLIBC FALSE)",
|
filter_file(
|
||||||
join_path("cmake", "FindIconv.cmake"),
|
"check_function_exists(iconv_open ICONV_IN_GLIBC)",
|
||||||
string=True,
|
"set(ICONV_IN_GLIBC FALSE)",
|
||||||
)
|
join_path("cmake", "FindIconv.cmake"),
|
||||||
|
string=True,
|
||||||
|
)
|
||||||
|
|
||||||
def cmake_args(self):
|
def cmake_args(self):
|
||||||
return [
|
return [
|
||||||
|
Loading…
Reference in New Issue
Block a user