forked from NLnetLabs/unbound
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Introduce
-V
option to print the version number and build options.
Previously reported build options like linked libs and linked modules are now moved from `-h` to `-V` as well for consistency. - PACKAGE_BUGREPORT now also includes link to GitHub issues.
- Loading branch information
Showing
5 changed files
with
51 additions
and
22 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 |
---|---|---|
|
@@ -12,7 +12,7 @@ sinclude(dnscrypt/dnscrypt.m4) | |
m4_define([VERSION_MAJOR],[1]) | ||
m4_define([VERSION_MINOR],[9]) | ||
m4_define([VERSION_MICRO],[3]) | ||
AC_INIT(unbound, m4_defn([VERSION_MAJOR]).m4_defn([VERSION_MINOR]).m4_defn([VERSION_MICRO]), [email protected], unbound) | ||
AC_INIT(unbound, m4_defn([VERSION_MAJOR]).m4_defn([VERSION_MINOR]).m4_defn([VERSION_MICRO]), [email protected] or https://github.com/NLnetLabs/unbound/issues, unbound) | ||
AC_SUBST(UNBOUND_VERSION_MAJOR, [VERSION_MAJOR]) | ||
AC_SUBST(UNBOUND_VERSION_MINOR, [VERSION_MINOR]) | ||
AC_SUBST(UNBOUND_VERSION_MICRO, [VERSION_MICRO]) | ||
|
@@ -112,6 +112,8 @@ AC_SUBST(LIBUNBOUND_CURRENT) | |
AC_SUBST(LIBUNBOUND_REVISION) | ||
AC_SUBST(LIBUNBOUND_AGE) | ||
|
||
AC_DEFINE_UNQUOTED(CONFCMDLINE, "$@", [Command line arguments used with configure]) | ||
|
||
CFLAGS="$CFLAGS" | ||
AC_AIX | ||
if test "$ac_cv_header_minix_config_h" = "yes"; then | ||
|
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