Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
cd63e943
Commit
cd63e943
authored
Jan 24, 2013
by
Evan Hunt
Browse files
[master] build failure in C99
3478. [port] Fix a build failure in strict C99 environments [RT #32475]
parent
ca385a75
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
cd63e943
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]
[RT #32365]
3476. [bug] "rndc zonestatus" could report a spurious "not
3476. [bug] "rndc zonestatus" could report a spurious "not
...
...
configure.in
View file @
cd63e943
...
@@ -391,17 +391,15 @@ AC_CHECK_FUNCS(setegid setresgid)
...
@@ -391,17 +391,15 @@ AC_CHECK_FUNCS(setegid setresgid)
# is reported to not support "static inline" (RT #1212).
# is reported to not support "static inline" (RT #1212).
#
#
AC_MSG_CHECKING(for static inline breakage)
AC_MSG_CHECKING(for static inline breakage)
AC_TRY_COMPILE(, [
AC_TRY_COMPILE([
foo1();
}
static inline int foo1() {
static inline int foo1() {
return 0;
return 0;
}
}
static inline int foo2() {
static inline int foo2() {
return foo1();
return foo1();
],
}
], [foo1();],
[AC_MSG_RESULT(no)],
[AC_MSG_RESULT(no)],
[AC_MSG_RESULT(yes)
[AC_MSG_RESULT(yes)
AC_DEFINE(inline, ,[Define to empty if your compiler does not support "static inline".])])
AC_DEFINE(inline, ,[Define to empty if your compiler does not support "static inline".])])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment