From 533de22bae2c60e8dcf152f07de26247c5281d0a Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Mon, 4 Jun 2012 11:01:03 -0700 Subject: Add a configure message about internal glib to tip people off --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 1b84b07..4995f49 100644 --- a/configure.ac +++ b/configure.ac @@ -150,12 +150,15 @@ AC_ARG_WITH([internal-glib], [with_internal_glib="$withval"], [with_internal_glib=no]) AM_CONDITIONAL([INTERNAL_GLIB], [test "x$with_internal_glib" = xyes]) +AC_MSG_CHECKING([if internal glib should be used]) if test "x$with_internal_glib" = xyes; then + AC_MSG_RESULT([yes]) GLIB_CFLAGS='-I$(top_srcdir)/glib -I$(top_srcdir)/glib/glib \ -I$(top_builddir)/glib/glib' GLIB_LIBS='$(top_builddir)/glib/glib/libglib-2.0.la' AC_CONFIG_SUBDIRS([glib]) else + AC_MSG_RESULT([no]) if test "x$GLIB_CFLAGS" = "x" && test "x$GLIB_LIBS" = "x"; then AC_CHECK_PROGS([PKG_CONFIG], [pkg-config], []) if test -n $PKG_CONFIG && $PKG_CONFIG --exists glib_module; then -- cgit v1.2.1