gui/configure.ac
author deba
Mon, 03 Apr 2006 09:45:23 +0000
changeset 2031 080d51024ac5
permissions -rw-r--r--
Correcting the structure of the graph's and adaptor's map.
The template assign operators and map iterators can be used for adaptors also.

Some bugfix in the adaptors

New class SwapBpUGraphAdaptor which swaps the two nodeset of the graph.
     1 dnl Process this file with autoconf to produce a configure script.
     2 AC_PREREQ([2.59])
     3 AC_INIT([gLEMON], [0.1], [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])
     9 
    10 dnl Checks for programs.
    11 AC_PROG_CXX
    12 AC_PROG_CXXCPP
    13 AC_PROG_INSTALL
    14 AC_PROG_LIBTOOL
    15 
    16 dnl i18n
    17 AM_GNU_GETTEXT_VERSION([0.14.5])
    18 AM_GNU_GETTEXT([external])
    19 
    20 dnl Checks for libraries.
    21 PKG_CHECK_MODULES([GTK], [libgnomecanvasmm-2.6 >= 2.6.0])
    22 
    23 dnl Checks for header files.
    24 
    25 dnl Checks for typedefs, structures, and compiler characteristics.
    26 
    27 dnl Checks for library functions.
    28 
    29 AC_CONFIG_FILES([
    30 Makefile
    31 po/Makefile.in
    32 ])
    33 AC_OUTPUT