gravatar
ladanyi@tmit.bme.hu
ladanyi@tmit.bme.hu
Forbid automake to add superfluous include dirs. Fixes ticket #21.
0 1 0
default
1 file changed with 1 insertions and 1 deletions:
↑ Collapse diff ↑
Ignore white space 96 line context
1 1
dnl Process this file with autoconf to produce a configure script.
2 2

	
3 3
dnl Version information.
4 4
m4_define([lemon_version_major], [0])
5 5
m4_define([lemon_version_minor], [99])
6 6
m4_define([lemon_version_micro], [])
7 7
m4_define([lemon_version_nano], [])
8 8
m4_define([lemon_version_tag], [hg])
9 9
m4_define([lemon_hg_revision], [m4_normalize(esyscmd([hg id -i]))])
10 10
m4_define([lemon_version], [lemon_version_major().lemon_version_minor()ifelse(lemon_version_micro(), [], [], [.lemon_version_micro()])ifelse(lemon_version_nano(), [], [], [.lemon_version_nano()])ifelse(lemon_version_tag(), [], [], lemon_version_tag(), [hg], [[_]lemon_version_tag()[_]lemon_hg_revision()], [[_]lemon_version_tag()])])
11 11

	
12 12
AC_PREREQ([2.59])
13 13
AC_INIT([LEMON], [lemon_version()], [etik-ol@cs.elte.hu], [lemon])
14 14
AC_CONFIG_AUX_DIR([build-aux])
15 15
AC_CONFIG_MACRO_DIR([m4])
16
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
16
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects nostdinc])
17 17
AC_CONFIG_SRCDIR([lemon/list_graph.h])
18 18
AC_CONFIG_HEADERS([config.h lemon/config.h])
19 19

	
20 20
lx_cmdline_cxxflags_set=${CXXFLAGS+set}
21 21

	
22 22
dnl Checks for programs.
23 23
AC_PROG_CXX
24 24
AC_PROG_CXXCPP
25 25
AC_PROG_INSTALL
26 26
AC_DISABLE_SHARED
27 27
AC_PROG_LIBTOOL
28 28

	
29 29
AC_CHECK_PROG([doxygen_found],[doxygen],[yes],[no])
30 30

	
31 31
if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then
32 32
  CXXFLAGS="$CXXFLAGS -Wall -W -Wall -W -Wunused -Wformat=2 -Wctor-dtor-privacy -Wnon-virtual-dtor -Wno-char-subscripts -Wwrite-strings -Wno-char-subscripts -Wreturn-type -Wcast-qual -Wcast-align -Wsign-promo -Woverloaded-virtual -Woverloaded-virtual -ansi -fno-strict-aliasing -Wold-style-cast -Wno-unknown-pragmas"
33 33
fi
34 34

	
35 35
dnl Checks for libraries.
36 36
LX_CHECK_GLPK
37 37
LX_CHECK_CPLEX
38 38
LX_CHECK_SOPLEX
39 39

	
40 40
dnl Disable/enable building the demo programs
41 41
AC_ARG_ENABLE([demo],
42 42
AS_HELP_STRING([--enable-demo], [build the demo programs])
43 43
AS_HELP_STRING([--disable-demo], [do not build the demo programs @<:@default@:>@]),
44 44
              [], [enable_demo=no])
45 45
AC_MSG_CHECKING([whether to build the demo programs])
46 46
if test x"$enable_demo" != x"no"; then
47 47
  AC_MSG_RESULT([yes])
48 48
else
49 49
  AC_MSG_RESULT([no])
50 50
fi
51 51
AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"])
52 52

	
53 53
dnl Disable/enable building the binary tools
54 54
AC_ARG_ENABLE([tools],
55 55
AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@])
56 56
AS_HELP_STRING([--disable-tools], [do not build additional tools]),
57 57
              [], [enable_tools=yes])
58 58
AC_MSG_CHECKING([whether to build the additional tools])
59 59
if test x"$enable_tools" != x"no"; then
60 60
  AC_MSG_RESULT([yes])
61 61
else
62 62
  AC_MSG_RESULT([no])
63 63
fi
64 64
AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"])
0 comments (0 inline)