COIN-OR::LEMON - Graph Library

source: lemon-0.x/configure.ac @ 1310:1b434e6cc405

Last change on this file since 1310:1b434e6cc405 was 1304:c9c2e90b2342, checked in by Akos Ladanyi, 19 years ago

Merged my branch (branches/akos) changes r1654:1740 into the trunk.

File size: 873 bytes
RevLine 
[542]1dnl Process this file with autoconf to produce a configure script.
[1163]2AC_INIT([LEMON], [0.4], [etik-ol@cs.elte.hu], [lemon])
[542]3AC_CONFIG_AUX_DIR([config])
4AM_INIT_AUTOMAKE(1.7)
[921]5AC_CONFIG_SRCDIR([src/lemon/invalid.h])
[542]6AC_PREREQ(2.57)
7
8dnl Checks for programs.
9AC_PROG_CXX
[1304]10AC_PROG_INSTALL
11AC_PROG_LIBTOOL
[542]12
[716]13CXXFLAGS="$CXXFLAGS -Wall"
14
[542]15dnl Checks for libraries.
16
17dnl Checks for header files.
[774]18AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h)
[542]19
20dnl Checks for typedefs, structures, and compiler characteristics.
21AC_C_CONST
22AC_C_INLINE
23AC_TYPE_SIZE_T
24AC_HEADER_TIME
25AC_STRUCT_TM
26
27dnl Checks for library functions.
28AC_HEADER_STDC
[1108]29AC_CHECK_FUNCS(gettimeofday times ctime_r)
[542]30
[1304]31AC_CONFIG_FILES([
32Makefile
33autopackage/default.apspec
34doc/Makefile
35doc/Doxyfile
36src/Makefile
37src/lemon/Makefile
38src/lemon/lemon.pc
39src/benchmark/Makefile
40src/demo/Makefile
41src/test/Makefile
42])
[542]43AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.