From cd63e943104ab4f7f8b37da8d49738e91a8db1dd Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Thu, 24 Jan 2013 14:51:27 -0800 Subject: [PATCH] [master] build failure in C99 3478. [port] Fix a build failure in strict C99 environments [RT #32475] --- CHANGES | 5 ++++- configure.in | 8 +++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 8484f46c26..ad8988250b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,7 @@ -3477. [func] expand logging when adding records via DDNS update +3478. [port] Fix a build failure in strict C99 environments + [RT #32475] + +3477. [func] Expand logging when adding records via DDNS update [RT #32365] 3476. [bug] "rndc zonestatus" could report a spurious "not diff --git a/configure.in b/configure.in index 79e16221c6..4657145e14 100644 --- a/configure.in +++ b/configure.in @@ -391,17 +391,15 @@ AC_CHECK_FUNCS(setegid setresgid) # is reported to not support "static inline" (RT #1212). # AC_MSG_CHECKING(for static inline breakage) -AC_TRY_COMPILE(, [ - foo1(); - } - +AC_TRY_COMPILE([ static inline int foo1() { return 0; } static inline int foo2() { return foo1(); - ], + } + ], [foo1();], [AC_MSG_RESULT(no)], [AC_MSG_RESULT(yes) AC_DEFINE(inline, ,[Define to empty if your compiler does not support "static inline".])])