configure.ac
author ladanyi
Mon, 26 Jun 2006 21:38:06 +0000
changeset 143 d3c775ea2d0c
child 144 887cd09ea943
permissions -rw-r--r--
Small fix.
     1 dnl Process this file with autoconf to produce a configure script.
     2 AC_PREREQ([2.59])
     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])
     9 
    10 dnl Checks for programs.
    11 AC_PROG_CXX
    12 AC_PROG_CC
    13 AM_GNU_GETTEXT_VERSION([0.14.2])
    14 AM_GNU_GETTEXT([external])
    15 
    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], [lemon >= 0.5])
    19 
    20 dnl Checks for header files.
    21 AC_CHECK_HEADERS([libintl.h locale.h])
    22 
    23 dnl Checks for typedefs, structures, and compiler characteristics.
    24 AC_HEADER_STDBOOL
    25 AC_C_CONST
    26 
    27 dnl Checks for library functions.
    28 AC_CHECK_FUNCS([setlocale sqrt])
    29 
    30 AC_CONFIG_FILES([
    31 Makefile
    32 po/Makefile.in
    33 m4/Makefile
    34 ])
    35 
    36 AC_OUTPUT