config/lx_enable_gui.m4
author hegyi
Thu, 23 Jun 2005 17:56:24 +0000
changeset 1509 f9113440b667
permissions -rw-r--r--
A bug, explored by Alpar is corrected, but with value-checking, and not with correct values. (There is some problem with map values of new items! Maybe refreshemnt is the responsible thing?)
     1 AC_DEFUN([LX_ENABLE_GUI],
     2 [
     3   AC_ARG_ENABLE([gui],
     4 AS_HELP_STRING([--enable-gui], [build the GUI])
     5 AS_HELP_STRING([--disable-gui], [do not build the GUI @<:@default@:>@]),
     6          [], [enable_gui=no])
     7 
     8   AC_MSG_CHECKING([whether to build the GUI])
     9   if test x"$enable_gui" != x"no"; then
    10       AC_MSG_RESULT([yes])
    11   else
    12       AC_MSG_RESULT([no])
    13   fi
    14   if test x"$enable_gui" != x"no"; then
    15     PKG_CHECK_MODULES([GTK], [libgnomecanvasmm-2.6 >= 2.6.0])
    16   fi
    17   AM_CONDITIONAL([WANT_GUI], [test x"$enable_gui" != x"no"])
    18 ])