# HG changeset patch # User John Bailey # Date 1268232983 0 # Node ID d27d7b280bdb3316a3e9b31051e98693dbf98e41 # Parent fce3282c18135c7fbfb1f1ef866c60f6d49ae0f6 Properly display "no" in the configure output when not using external libgadu. Refs #10542. diff -r fce3282c1813 -r d27d7b280bdb configure.ac --- a/configure.ac Wed Mar 10 14:35:56 2010 +0000 +++ b/configure.ac Wed Mar 10 14:56:23 2010 +0000 @@ -1091,6 +1091,10 @@ AM_CONDITIONAL(USE_INTERNAL_LIBGADU, test "x$gadu_libs" != "xyes") +if test "x$gadu_libs" = "x"; then + gadu_libs=no +fi + AC_SUBST(GADU_LIBS) AC_SUBST(GADU_CFLAGS)