From 3c82019d5249ce06f74807b69b955d2e013b8f98 Mon Sep 17 00:00:00 2001 From: Andy Green Date: Sat, 12 Jan 2013 23:31:39 +0800 Subject: [PATCH] fix config enable name for getifaddrs copy-paste... Signed-off-by: Andy Green --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index fce031178..92d18499e 100644 --- a/configure.ac +++ b/configure.ac @@ -130,7 +130,7 @@ AC_ARG_ENABLE(builtin-getifaddrs, [ --enable-builtin-getifaddrs Use BSD getifaddrs implementation from libwebsockets... default is your libc provides it], [ builtin_getifaddrs=yes ]) -if test "x$x_google_mux" = "xyes" ; then +if test "x$builtin-getifaddrs" = "xyes" ; then CFLAGS="$CFLAGS -DLWS_BUILTIN_GETIFADDRS" fi AM_CONDITIONAL(USE_BUILTIN_GETIFADDRS, test x$builtin_getifaddrs = xyes)