mirror of https://github.com/getdnsapi/getdns.git
Compare commits
No commits in common. "d98d307e64a368693df2289d071b1589c232c7cb" and "8aa19255b868c4890fb9b090126a8d46d53ed96f" have entirely different histories.
d98d307e64
...
8aa19255b8
|
@ -1,4 +1,4 @@
|
||||||
cmake_minimum_required(VERSION 3.20 FATAL_ERROR)
|
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
|
||||||
|
|
||||||
if (POLICY CMP0075)
|
if (POLICY CMP0075)
|
||||||
cmake_policy(SET CMP0075 NEW)
|
cmake_policy(SET CMP0075 NEW)
|
||||||
|
@ -13,7 +13,7 @@ endif ()
|
||||||
|
|
||||||
set(PACKAGE "getdns")
|
set(PACKAGE "getdns")
|
||||||
set(PACKAGE_NAME "getdns")
|
set(PACKAGE_NAME "getdns")
|
||||||
set(PACKAGE_VERSION "1.7.3")
|
set(PACKAGE_VERSION "1.7.1")
|
||||||
set(PACKAGE_BUGREPORT "team@getdnsapi.net")
|
set(PACKAGE_BUGREPORT "team@getdnsapi.net")
|
||||||
set(PACKAGE_URL "https://getdnsapi.net")
|
set(PACKAGE_URL "https://getdnsapi.net")
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}${RELEASE_CANDIDATE}")
|
||||||
set(PACKAGE_TARNAME "${PACKAGE}-${PACKAGE_VERSION}${RELEASE_CANDIDATE}")
|
set(PACKAGE_TARNAME "${PACKAGE}-${PACKAGE_VERSION}${RELEASE_CANDIDATE}")
|
||||||
|
|
||||||
set(GETDNS_VERSION "${PACKAGE_VERSION}${RELEASE_CANDIDATE}")
|
set(GETDNS_VERSION "${PACKAGE_VERSION}${RELEASE_CANDIDATE}")
|
||||||
set(GETDNS_NUMERIC_VERSION 0x01070200)
|
set(GETDNS_NUMERIC_VERSION 0x01070100)
|
||||||
set(API_VERSION "December 2015")
|
set(API_VERSION "December 2015")
|
||||||
set(API_NUMERIC_VERSION 0x07df0c00)
|
set(API_NUMERIC_VERSION 0x07df0c00)
|
||||||
|
|
||||||
|
@ -262,7 +262,6 @@ check_include_file(inttypes.h HAVE_INTTYPES_H)
|
||||||
check_include_file(limits.h HAVE_LIMITS_H)
|
check_include_file(limits.h HAVE_LIMITS_H)
|
||||||
check_include_file(sys/limits.h HAVE_SYS_LIMITS_H)
|
check_include_file(sys/limits.h HAVE_SYS_LIMITS_H)
|
||||||
check_include_file(stdarg.h HAVE_STDARG_H)
|
check_include_file(stdarg.h HAVE_STDARG_H)
|
||||||
check_include_file(stddef.h HAVE_STDDEF_H)
|
|
||||||
check_include_file(stdint.h HAVE_STDINT_H)
|
check_include_file(stdint.h HAVE_STDINT_H)
|
||||||
check_include_file(stdio.h HAVE_STDIO_H)
|
check_include_file(stdio.h HAVE_STDIO_H)
|
||||||
check_include_file(stdlib.h HAVE_STDLIB_H)
|
check_include_file(stdlib.h HAVE_STDLIB_H)
|
||||||
|
|
|
@ -1,12 +1,3 @@
|
||||||
* 2022-12-22: Version 1.7.3
|
|
||||||
* PR #532: Increase CMake required version 3.5 -> 3.20, because we
|
|
||||||
need cmake_path for Absolute paths in pkg-config (See Issue #517)
|
|
||||||
Thanks Gabriel Ganne
|
|
||||||
* Updated to Stubby 0.4.3 quickfix release
|
|
||||||
|
|
||||||
* 2022-08-19: Version 1.7.2
|
|
||||||
* Updated to Stubby 0.4.2 quickfix release
|
|
||||||
|
|
||||||
* 2022-08-19: Version 1.7.1
|
* 2022-08-19: Version 1.7.1
|
||||||
* Always send the `dot` ALPN when using DoT
|
* Always send the `dot` ALPN when using DoT
|
||||||
* Strengthen version determination for Libidn2 during cmake processing
|
* Strengthen version determination for Libidn2 during cmake processing
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
#cmakedefine HAVE_LIMITS_H 1
|
#cmakedefine HAVE_LIMITS_H 1
|
||||||
#cmakedefine HAVE_SYS_LIMITS_H 1
|
#cmakedefine HAVE_SYS_LIMITS_H 1
|
||||||
#cmakedefine HAVE_STDARG_H 1
|
#cmakedefine HAVE_STDARG_H 1
|
||||||
#cmakedefine HAVE_STDDEF_H 1
|
|
||||||
#cmakedefine HAVE_STDINT_H 1
|
#cmakedefine HAVE_STDINT_H 1
|
||||||
#cmakedefine HAVE_STDIO_H 1
|
#cmakedefine HAVE_STDIO_H 1
|
||||||
#cmakedefine HAVE_STDLIB_H 1
|
#cmakedefine HAVE_STDLIB_H 1
|
||||||
|
@ -242,10 +241,6 @@
|
||||||
# define FD_SETSIZE 1024
|
# define FD_SETSIZE 1024
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* the version of the windows API enabled */
|
/* the version of the windows API enabled */
|
||||||
# ifndef WINVER
|
# ifndef WINVER
|
||||||
# define WINVER 0x0600 // 0x0502
|
# define WINVER 0x0600 // 0x0502
|
||||||
|
@ -312,11 +307,12 @@ extern "C" {
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_STDLIB_H
|
#ifdef __cplusplus
|
||||||
#include <stdlib.h>
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_STDDEF_H
|
#if STDC_HEADERS
|
||||||
|
#include <stdlib.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
2
stubby
2
stubby
|
@ -1 +1 @@
|
||||||
Subproject commit 8571f6aba6827a74588f0d0e645d363c9ab045d1
|
Subproject commit 212e78d424f50d093be8a908042542c30ff570b2
|
Loading…
Reference in New Issue