* guilify mu; first steps, and a new toy called 'muile'

This commit is contained in:
Dirk-Jan C. Binnema
2011-07-05 00:18:43 +03:00
parent 5ad2319fe1
commit 0b7693d077
10 changed files with 589 additions and 8 deletions

View File

@ -204,6 +204,15 @@ AM_CONDITIONAL(HAVE_GIO, [test "x$have_gio" = "xyes"])
# should we build the widgets/ dir?
AM_CONDITIONAL(BUILD_WIDGETS, [test "x$have_webkit" = "xyes" -a "x$have_gio" = "xyes"])
# check for guile
AC_PATH_PROG(GUILE, [guile-config], [], [$PATH])
AS_IF([test "x$GUILE" != "x"],
[GUILE_CFLAGS=`$GUILE compile`; GUILE_LIBS=`$GUILE link`])
AM_CONDITIONAL(HAVE_GUILE, [test "$xGUILE" != "x"])
AC_SUBST(GUILE_LIBS)
AC_SUBST(GUILE_CFLAGS)
# check for xdg-open
AS_IF([test "x$buildgui"="xyes"],[
AC_PATH_PROG(XDGOPEN, [xdg-open], [], [$PATH])
@ -228,9 +237,11 @@ Makefile
src/Makefile
src/tests/Makefile
widgets/Makefile
libmuguile/Makefile
toys/Makefile
toys/mug/Makefile
toys/mug2/Makefile
toys/muile/Makefile
man/Makefile
m4/Makefile
contrib/Makefile
@ -264,6 +275,10 @@ if test "x$have_webkit" = "xyes"; then
echo "Webkit version : $webkit_version"
fi
if test "x$GUILE" != "x"; then
echo "Guile version : `$GUILE --version 2>&1`"
fi
echo
echo "Build unit tests (glib >= 2.22) : $have_gtest"
echo "Build 'mug' toy-ui (requires GTK+) : $buildgui"