forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[getdns] update to 1.7.3 (microsoft#34188)
* [getdns] update to 1.7.3 * [getdns] update to 1.7.3 * fix deps * delete nouse patch chunk * fix deps * fix deps --------- Co-authored-by: MonicaLiu <[email protected]>
- Loading branch information
Showing
7 changed files
with
89 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
diff --git a/src/gldns/parse.c b/src/gldns/parse.c | ||
index 367fa80..79fa527 100644 | ||
--- a/src/gldns/parse.c | ||
+++ b/src/gldns/parse.c | ||
@@ -13,7 +13,7 @@ | ||
#include "gldns/gbuffer.h" | ||
|
||
#include <limits.h> | ||
-#include <strings.h> | ||
+#include <stdlib.h> | ||
|
||
gldns_lookup_table gldns_directive_types[] = { | ||
{ GLDNS_DIR_TTL, "$TTL" }, | ||
diff --git a/src/gldns/parseutil.c b/src/gldns/parseutil.c | ||
index 293496a..bcd8e6f 100644 | ||
--- a/src/gldns/parseutil.c | ||
+++ b/src/gldns/parseutil.c | ||
@@ -14,8 +14,12 @@ | ||
|
||
#include "config.h" | ||
#include "gldns/parseutil.h" | ||
+#ifdef HAVE_SYS_TIME_H | ||
#include <sys/time.h> | ||
+#endif | ||
+#ifdef HAVE_TIME_H | ||
#include <time.h> | ||
+#endif | ||
#include <ctype.h> | ||
|
||
gldns_lookup_table * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index c5b711e..6bd9ee2 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -872,7 +872,7 @@ endif () | ||
|
||
# libuv extension. | ||
if (USE_LIBUV) | ||
- find_package(Libuv) | ||
+ find_package(libuv CONFIG REQUIRED) | ||
if (Libuv_FOUND) | ||
# Check for new-style callbacks. | ||
try_compile(HAVE_NEW_UV_TIMER_CB | ||
@@ -894,8 +894,7 @@ if (USE_LIBUV) | ||
set_property(TARGET uv_objects PROPERTY C_STANDARD 11) | ||
if (ENABLE_STATIC) | ||
add_library(getdns_ext_uv STATIC $<TARGET_OBJECTS:uv_objects>) | ||
- target_include_directories(getdns_ext_uv PRIVATE Libuv::Libuv) | ||
- target_link_libraries(getdns_ext_uv PUBLIC getdns Libuv::Libuv) | ||
+ target_link_libraries(getdns_ext_uv PUBLIC getdns $<IF:$<TARGET_EXISTS:libuv::uv_a>,libuv::uv_a,libuv::uv>) | ||
if (Libunbound_FOUND) | ||
target_link_libraries(getdns_ext_uv PUBLIC Libunbound::Libunbound) | ||
endif () | ||
@@ -903,8 +902,7 @@ if (USE_LIBUV) | ||
endif () | ||
if (ENABLE_SHARED) | ||
add_library(getdns_ext_uv_shared SHARED $<TARGET_OBJECTS:uv_objects>) | ||
- target_include_directories(getdns_ext_uv_shared PRIVATE Libuv::Libuv) | ||
- target_link_libraries(getdns_ext_uv_shared PUBLIC getdns_shared Libuv::Libuv) | ||
+ target_link_libraries(getdns_ext_uv_shared PUBLIC getdns $<IF:$<TARGET_EXISTS:libuv::uv_a>,libuv::uv_a,libuv::uv>) | ||
if (Libunbound_FOUND) | ||
target_link_libraries(getdns_ext_uv_shared PUBLIC Libunbound::Libunbound) | ||
endif () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters