mirror of https://github.com/getdnsapi/getdns.git
Compare commits
3 Commits
c2e085ee9e
...
9d8eea97a5
Author | SHA1 | Date |
---|---|---|
|
9d8eea97a5 | |
|
c0e45395b8 | |
|
ed7bfa107e |
|
@ -1,3 +1,7 @@
|
||||||
|
* 2022-07-20
|
||||||
|
* Strengthen version determination for Libidn2 during cmake processing (thanks
|
||||||
|
jpbion).
|
||||||
|
|
||||||
* 2021-06-04: Version 1.7.0
|
* 2021-06-04: Version 1.7.0
|
||||||
* Make TLS Handshake timeout max 4/5th of timeout for the query,
|
* Make TLS Handshake timeout max 4/5th of timeout for the query,
|
||||||
just like connection setup timeout was, so fallback transport
|
just like connection setup timeout was, so fallback transport
|
||||||
|
|
|
@ -52,9 +52,9 @@ if (LIBIDN2_INCLUDE_DIR AND LIBIDN2_LIBRARY)
|
||||||
)
|
)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
if (NOT LIBIDN2_VERSION AND LIBIDN2_INCLUDE_DIR AND EXISTS "${LIBIDN2_INCLUDE_DIR}/unbound.h")
|
if (NOT LIBIDN2_VERSION AND LIBIDN2_INCLUDE_DIR AND EXISTS "${LIBIDN2_INCLUDE_DIR}/idn2.h")
|
||||||
file(STRINGS "${LIBIDN2_INCLUDE_DIR}/idn2.h" LIBIDN2_H REGEX "^#define IDN2_VERSION ")
|
file(STRINGS "${LIBIDN2_INCLUDE_DIR}/idn2.h" LIBIDN2_H REGEX "^[ \t]*#[ \t]*define[ \t]+IDN2_VERSION[ \t]")
|
||||||
string(REGEX REPLACE "^.*IDN2_VERSION \"([0-9.]+)\".*$" "\\1" LIBIDN2_VERSION "${LIBIDN2_H}")
|
string(REGEX REPLACE "^.*IDN2_VERSION[ \t]+\"([0-9.]+)\".*$" "\\1" LIBIDN2_VERSION "${LIBIDN2_H}")
|
||||||
endif ()
|
endif ()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue