-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #310 from getdnsapi/features/getdns_context_set_lo…
…gfunc A configurable log function
- Loading branch information
Showing
11 changed files
with
294 additions
and
160 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 |
---|---|---|
|
@@ -36,12 +36,12 @@ sinclude(./m4/acx_getaddrinfo.m4) | |
sinclude(./m4/ax_check_compile_flag.m4) | ||
sinclude(./m4/pkg.m4) | ||
|
||
AC_INIT([getdns], [1.1.1], [[email protected]], [], [https://getdnsapi.net]) | ||
AC_INIT([getdns], [1.1.2], [[email protected]], [], [https://getdnsapi.net]) | ||
|
||
# Dont forget to put a dash in front of the release candidate!!! | ||
# That is how it is done with semantic versioning! | ||
# | ||
AC_SUBST(RELEASE_CANDIDATE, []) | ||
AC_SUBST(RELEASE_CANDIDATE, [-rc1]) | ||
|
||
# Set current date from system if not set | ||
AC_ARG_WITH([current-date], | ||
|
@@ -51,7 +51,7 @@ AC_ARG_WITH([current-date], | |
[CURRENT_DATE="`date -u +%Y-%m-%dT%H:%M:%SZ`"]) | ||
|
||
AC_SUBST(GETDNS_VERSION, ["AC_PACKAGE_VERSION$RELEASE_CANDIDATE"]) | ||
AC_SUBST(GETDNS_NUMERIC_VERSION, [0x01010100]) | ||
AC_SUBST(GETDNS_NUMERIC_VERSION, [0x010101c1]) | ||
AC_SUBST(API_VERSION, ["December 2015"]) | ||
AC_SUBST(API_NUMERIC_VERSION, [0x07df0c00]) | ||
GETDNS_COMPILATION_COMMENT="AC_PACKAGE_NAME $GETDNS_VERSION configured on $CURRENT_DATE for the $API_VERSION version of the API" | ||
|
@@ -83,9 +83,10 @@ GETDNS_COMPILATION_COMMENT="AC_PACKAGE_NAME $GETDNS_VERSION configured on $CURRE | |
# getdns-0.9.0 had libversion 5:0:4 | ||
# getdns-1.0.0 had libversion 5:1:4 | ||
# getdns-1.1.0 had libversion 6:0:0 | ||
# getdns-1.1.1 has libversion 6:1:0 | ||
# getdns-1.1.1 had libversion 6:1:0 | ||
# getdns-1.1.2 will have libversion 7:0:1 | ||
# | ||
GETDNS_LIBVERSION=6:1:0 | ||
GETDNS_LIBVERSION=7:0:1 | ||
|
||
AC_SUBST(GETDNS_COMPILATION_COMMENT) | ||
AC_SUBST(GETDNS_LIBVERSION) | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Oops, something went wrong.