From 419a074315b4e040dbef1ec2bddc7f7846f70035 Mon Sep 17 00:00:00 2001 From: Wouter Wijngaards Date: Tue, 3 Dec 2013 14:07:56 +0000 Subject: [PATCH] use our own snprintf on windows for %lld. git-svn-id: file:///svn/unbound/trunk@3028 be551aaa-1e26-0410-a405-d3ace91eadb9 --- configure | 5 +++++ configure.ac | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/configure b/configure index 72f669044..334ef975c 100755 --- a/configure +++ b/configure @@ -18073,6 +18073,9 @@ esac fi + +if test "$on_mingw" != "yes"; then +# on windows we use our own snprintf because it is nicer with 64bit %lld. ac_fn_c_check_func "$LINENO" "snprintf" "ac_cv_func_snprintf" if test "x$ac_cv_func_snprintf" = xyes; then : $as_echo "#define HAVE_SNPRINTF 1" >>confdefs.h @@ -18087,6 +18090,8 @@ esac fi +fi + ac_fn_c_check_func "$LINENO" "strlcat" "ac_cv_func_strlcat" if test "x$ac_cv_func_strlcat" = xyes; then : $as_echo "#define HAVE_STRLCAT 1" >>confdefs.h diff --git a/configure.ac b/configure.ac index efc1a4a5d..51f418faa 100644 --- a/configure.ac +++ b/configure.ac @@ -953,7 +953,12 @@ fi AC_REPLACE_FUNCS(inet_aton) AC_REPLACE_FUNCS(inet_pton) AC_REPLACE_FUNCS(inet_ntop) + +if test "$on_mingw" != "yes"; then +# on windows we use our own snprintf because it is nicer with 64bit %lld. AC_REPLACE_FUNCS(snprintf) +fi + AC_REPLACE_FUNCS(strlcat) AC_REPLACE_FUNCS(strlcpy) AC_REPLACE_FUNCS(memmove) -- 2.47.2