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?)
ladanyi@1489
     1
AC_DEFUN([LX_ENABLE_GUI],
ladanyi@1489
     2
[
ladanyi@1489
     3
  AC_ARG_ENABLE([gui],
ladanyi@1489
     4
AS_HELP_STRING([--enable-gui], [build the GUI])
ladanyi@1489
     5
AS_HELP_STRING([--disable-gui], [do not build the GUI @<:@default@:>@]),
ladanyi@1489
     6
         [], [enable_gui=no])
ladanyi@1489
     7
ladanyi@1489
     8
  AC_MSG_CHECKING([whether to build the GUI])
ladanyi@1489
     9
  if test x"$enable_gui" != x"no"; then
ladanyi@1489
    10
      AC_MSG_RESULT([yes])
ladanyi@1489
    11
  else
ladanyi@1489
    12
      AC_MSG_RESULT([no])
ladanyi@1489
    13
  fi
ladanyi@1489
    14
  if test x"$enable_gui" != x"no"; then
ladanyi@1489
    15
    PKG_CHECK_MODULES([GTK], [libgnomecanvasmm-2.6 >= 2.6.0])
ladanyi@1489
    16
  fi
ladanyi@1489
    17
  AM_CONDITIONAL([WANT_GUI], [test x"$enable_gui" != x"no"])
ladanyi@1489
    18
])