Node and edge editor button are the same furthermore.
1 dnl Process this file with autoconf to produce a configure script.
3 AC_INIT([gLEMON], [svn-head], [etik-ol@cs.elte.hu], [glemon])
4 AC_CONFIG_AUX_DIR([build-aux])
5 AC_CONFIG_MACRO_DIR([m4])
6 AM_INIT_AUTOMAKE([-Wall -Werror foreign])
7 AC_CONFIG_SRCDIR([main_win.h])
8 AC_CONFIG_HEADERS([config.h])
10 dnl Checks for programs.
13 AM_GNU_GETTEXT_VERSION([0.14.2])
14 AM_GNU_GETTEXT([external])
16 dnl Checks for libraries.
17 PKG_CHECK_MODULES([GTK], [libgnomecanvasmm-2.6 >= 2.6.0 gtkmm-2.4 >= 2.6])
18 PKG_CHECK_MODULES([LEMON_0_5], [lemon >= 0.5],
19 [lemon_0_5_found=yes], [
22 PKG_CHECK_MODULES([LEMON_SVN_HEAD], [lemon = svn-head],
23 [lemon_svn_head_found=yes], [
25 lemon_svn_head_found=no])
26 if test x"$lemon_0_5_found" = x"no" -a x"$lemon_svn_head_found" = x"no"; then
27 AC_MSG_ERROR([LEMON not found.])
29 if test x"$lemon_svn_head_found" = x"yes"; then
30 LEMON_CFLAGS="$LEMON_SVN_HEAD_CFLAGS"
31 LEMON_LIBS="$LEMON_SVN_HEAD_LIBS"
33 LEMON_CFLAGS="$LEMON_0_5_CFLAGS"
34 LEMON_LIBS="$LEMON_0_5_LIBS"
36 AC_SUBST(LEMON_CFLAGS)
40 dnl Checks for header files.
41 AC_CHECK_HEADERS([libintl.h locale.h])
43 dnl Checks for typedefs, structures, and compiler characteristics.
47 dnl Checks for library functions.
48 AC_CHECK_FUNCS([setlocale sqrt])