diff -r 72755e49de4f -r 56dd34430f07 configure.ac --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/configure.ac Wed Jun 21 11:10:00 2006 +0000 @@ -0,0 +1,36 @@ +dnl Process this file with autoconf to produce a configure script. +AC_PREREQ([2.59]) +AC_INIT([gLEMON], [svn-head], [etik-ol@cs.elte.hu], [glemon]) +AC_CONFIG_AUX_DIR([build-aux]) +AC_CONFIG_MACRO_DIR([m4]) +AM_INIT_AUTOMAKE([-Wall -Werror foreign]) +AC_CONFIG_SRCDIR([main_win.h]) +AC_CONFIG_HEADERS([config.h]) + +dnl Checks for programs. +AC_PROG_CXX +AC_PROG_CC +AM_GNU_GETTEXT_VERSION([0.14.2]) +AM_GNU_GETTEXT([external]) + +dnl Checks for libraries. +PKG_CHECK_MODULES([GTK], [libgnomecanvasmm-2.6 >= 2.6.0 gtkmm-2.4 >= 2.6]) +PKG_CHECK_MODULES([LEMON], [lemon >= 0.5]) + +dnl Checks for header files. +AC_CHECK_HEADERS([libintl.h locale.h]) + +dnl Checks for typedefs, structures, and compiler characteristics. +AC_HEADER_STDBOOL +AC_C_CONST + +dnl Checks for library functions. +AC_CHECK_FUNCS([setlocale sqrt]) + +AC_CONFIG_FILES([ +Makefile +po/Makefile.in +m4/Makefile +]) + +AC_OUTPUT