COIN-OR::LEMON - Graph Library

source: glemon-0.x/configure.ac @ 139:56dd34430f07

Last change on this file since 139:56dd34430f07 was 139:56dd34430f07, checked in by Akos Ladanyi, 18 years ago

Autotools for glemon.

File size: 864 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2AC_PREREQ([2.59])
3AC_INIT([gLEMON], [svn-head], [etik-ol@cs.elte.hu], [glemon])
4AC_CONFIG_AUX_DIR([build-aux])
5AC_CONFIG_MACRO_DIR([m4])
6AM_INIT_AUTOMAKE([-Wall -Werror foreign])
7AC_CONFIG_SRCDIR([main_win.h])
8AC_CONFIG_HEADERS([config.h])
9
10dnl Checks for programs.
11AC_PROG_CXX
12AC_PROG_CC
13AM_GNU_GETTEXT_VERSION([0.14.2])
14AM_GNU_GETTEXT([external])
15
16dnl Checks for libraries.
17PKG_CHECK_MODULES([GTK], [libgnomecanvasmm-2.6 >= 2.6.0 gtkmm-2.4 >= 2.6])
18PKG_CHECK_MODULES([LEMON], [lemon >= 0.5])
19
20dnl Checks for header files.
21AC_CHECK_HEADERS([libintl.h locale.h])
22
23dnl Checks for typedefs, structures, and compiler characteristics.
24AC_HEADER_STDBOOL
25AC_C_CONST
26
27dnl Checks for library functions.
28AC_CHECK_FUNCS([setlocale sqrt])
29
30AC_CONFIG_FILES([
31Makefile
32po/Makefile.in
33m4/Makefile
34])
35
36AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.