configure.ac
branchgui
changeset 130 3533c2d9a865
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/configure.ac	Thu Mar 23 19:57:14 2006 +0000
     1.3 @@ -0,0 +1,33 @@
     1.4 +dnl Process this file with autoconf to produce a configure script.
     1.5 +AC_PREREQ([2.59])
     1.6 +AC_INIT([gLEMON], [0.1], [etik-ol@cs.elte.hu], [glemon])
     1.7 +AC_CONFIG_AUX_DIR([build-aux])
     1.8 +AC_CONFIG_MACRO_DIR([m4])
     1.9 +AM_INIT_AUTOMAKE([-Wall -Werror foreign])
    1.10 +AC_CONFIG_SRCDIR([main_win.h])
    1.11 +AC_CONFIG_HEADERS([config.h])
    1.12 +
    1.13 +dnl Checks for programs.
    1.14 +AC_PROG_CXX
    1.15 +AC_PROG_CXXCPP
    1.16 +AC_PROG_INSTALL
    1.17 +AC_PROG_LIBTOOL
    1.18 +
    1.19 +dnl i18n
    1.20 +AM_GNU_GETTEXT_VERSION([0.14.5])
    1.21 +AM_GNU_GETTEXT([external])
    1.22 +
    1.23 +dnl Checks for libraries.
    1.24 +PKG_CHECK_MODULES([GTK], [libgnomecanvasmm-2.6 >= 2.6.0])
    1.25 +
    1.26 +dnl Checks for header files.
    1.27 +
    1.28 +dnl Checks for typedefs, structures, and compiler characteristics.
    1.29 +
    1.30 +dnl Checks for library functions.
    1.31 +
    1.32 +AC_CONFIG_FILES([
    1.33 +Makefile
    1.34 +po/Makefile.in
    1.35 +])
    1.36 +AC_OUTPUT