configure: Mark conftest variable as unused to pass test with -Werror
When using -Werror, the warning for the unused variable would let the test fail, even if in6addr_any is available.
This commit is contained in:
+1
-1
@@ -609,7 +609,7 @@ AC_COMPILE_IFELSE(
|
|||||||
[[#include <sys/types.h>
|
[[#include <sys/types.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <netinet/in.h>]],
|
#include <netinet/in.h>]],
|
||||||
[[struct in6_addr in6;
|
[[struct in6_addr in6 __attribute__((unused));
|
||||||
in6 = in6addr_any;]])],
|
in6 = in6addr_any;]])],
|
||||||
[AC_MSG_RESULT([yes]);
|
[AC_MSG_RESULT([yes]);
|
||||||
AC_DEFINE([HAVE_IN6ADDR_ANY], [], [have struct in6_addr in6addr_any])],
|
AC_DEFINE([HAVE_IN6ADDR_ANY], [], [have struct in6_addr in6addr_any])],
|
||||||
|
|||||||
Reference in New Issue
Block a user