configure.ac
author ladanyi
Thu, 23 Mar 2006 20:43:25 +0000
branchgui
changeset 131 4f57efd63181
permissions -rw-r--r--
ignore generated files
     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