COIN-OR::LEMON - Graph Library

source: lemon-0.x/configure.ac @ 1327:ecc1cdea2ee7

Last change on this file since 1327:ecc1cdea2ee7 was 1327:ecc1cdea2ee7, checked in by Alpar Juttner, 19 years ago

Disable shared libraries (makes the compilation a bit faster)

File size: 891 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
[1327]11AC_DISABLE_SHARED
[1304]12AC_PROG_LIBTOOL
[542]13
[716]14CXXFLAGS="$CXXFLAGS -Wall"
15
[542]16dnl Checks for libraries.
17
18dnl Checks for header files.
[774]19AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h)
[542]20
21dnl Checks for typedefs, structures, and compiler characteristics.
22AC_C_CONST
23AC_C_INLINE
24AC_TYPE_SIZE_T
25AC_HEADER_TIME
26AC_STRUCT_TM
27
28dnl Checks for library functions.
29AC_HEADER_STDC
[1108]30AC_CHECK_FUNCS(gettimeofday times ctime_r)
[542]31
[1304]32AC_CONFIG_FILES([
33Makefile
34autopackage/default.apspec
35doc/Makefile
36doc/Doxyfile
37src/Makefile
38src/lemon/Makefile
39src/lemon/lemon.pc
40src/benchmark/Makefile
41src/demo/Makefile
42src/test/Makefile
43])
[542]44AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.