GNOME Bugzilla – Bug 687320
configure.ac os_win32 is not initialized to no, breaks linux build
Last modified: 2012-11-01 08:56:03 UTC
Created attachment 227778 [details] [review] initialize os_win32 to "no" "if test "x$os_win32" = "xno"; then AC_ARG_WITH([context_manager], AS_HELP_STRING( [--with-context-manager=@<:@network-manager/connman/unix/linux@:>@], [Context Manager backend to use]),, [with_context_manager="none"]) else LIBGUPNP_LIBS="$LIBGUPNP_LIBS -lrpcrt4" with_context_manager="windows" fi" fails as os_win32 is not initialized to "no" so this test always fallback to win32 case. Attached patch fix this.
Thanks. Seems to have been lost during rebasing.