gravatar
kpeter (Peter Kovacs)
kpeter@inf.elte.hu
Capitalized compiler messages.
0 1 0
default
1 file changed with 4 insertions and 4 deletions:
↑ Collapse diff ↑
Ignore white space 192 line context
... ...
@@ -44,113 +44,113 @@
44 44
              [], [enable_doc=yes])
45 45

	
46 46
AC_MSG_CHECKING([whether to build the documention])
47 47
case "$enable_doc" in
48 48
  yes)
49 49
    DOXYGEN_INTERNAL_DOCS=NO
50 50
    AC_MSG_RESULT([yes])
51 51
    ;;
52 52
  full)
53 53
    DOXYGEN_INTERNAL_DOCS=YES
54 54
    AC_MSG_RESULT([full])
55 55
    ;;
56 56
  no)
57 57
    DOXYGEN_INTERNAL_DOCS=NO
58 58
    AC_MSG_RESULT([no])
59 59
    ;;
60 60
  *)
61 61
    AC_MSG_ERROR([bad value $enable_doc for option --enable-doc])
62 62
    ;;
63 63
esac
64 64
AC_SUBST(DOXYGEN_INTERNAL_DOCS)
65 65
AM_CONDITIONAL([WANT_DOC], [test x"$enable_doc" != x"no"])
66 66

	
67 67
dnl Disable/enable building the demo programs
68 68
AC_ARG_ENABLE([demo],
69 69
AS_HELP_STRING([--enable-demo], [build the demo programs])
70 70
AS_HELP_STRING([--disable-demo], [do not build the demo programs @<:@default@:>@]),
71 71
              [], [enable_demo=no])
72 72
AC_MSG_CHECKING([whether to build the demo programs])
73 73
if test x"$enable_demo" != x"no"; then
74 74
  AC_MSG_RESULT([yes])
75 75
else
76 76
  AC_MSG_RESULT([no])
77 77
fi
78 78
AM_CONDITIONAL([WANT_DEMO], [test x"$enable_demo" != x"no"])
79 79

	
80 80
dnl Disable/enable building the binary tools
81 81
AC_ARG_ENABLE([tools],
82 82
AS_HELP_STRING([--enable-tools], [build additional tools @<:@default@:>@])
83 83
AS_HELP_STRING([--disable-tools], [do not build additional tools]),
84 84
              [], [enable_tools=yes])
85 85
AC_MSG_CHECKING([whether to build the additional tools])
86 86
if test x"$enable_tools" != x"no"; then
87 87
  AC_MSG_RESULT([yes])
88 88
else
89 89
  AC_MSG_RESULT([no])
90 90
fi
91 91
AM_CONDITIONAL([WANT_TOOLS], [test x"$enable_tools" != x"no"])
92 92

	
93 93
dnl Disable/enable building the benchmarks
94 94
AC_ARG_ENABLE([benchmark],
95 95
AS_HELP_STRING([--enable-benchmark], [build the benchmarks])
96 96
AS_HELP_STRING([--disable-benchmark], [do not build the benchmarks @<:@default@:>@]),
97 97
              [], [enable_benchmark=no])
98 98
AC_MSG_CHECKING([whether to build the benchmarks])
99 99
if test x"$enable_benchmark" != x"no"; then
100 100
  AC_MSG_RESULT([yes])
101 101
else
102 102
  AC_MSG_RESULT([no])
103 103
fi
104 104
AM_CONDITIONAL([WANT_BENCHMARK], [test x"$enable_benchmark" != x"no"])
105 105

	
106 106
dnl Checks for header files.
107 107
AC_CHECK_HEADERS(limits.h sys/time.h sys/times.h unistd.h)
108 108

	
109 109
dnl Checks for typedefs, structures, and compiler characteristics.
110 110
AC_C_CONST
111 111
AC_C_INLINE
112 112
AC_TYPE_SIZE_T
113 113
AC_HEADER_TIME
114 114
AC_STRUCT_TM
115 115

	
116 116
dnl Checks for library functions.
117 117
AC_HEADER_STDC
118 118
AC_CHECK_FUNCS(gettimeofday times ctime_r)
119 119

	
120 120
AC_CONFIG_FILES([
121 121
Makefile
122 122
doc/Doxyfile
123 123
lemon/lemon.pc
124 124
])
125 125

	
126 126
AC_OUTPUT
127 127

	
128 128
echo
129 129
echo '****************************** SUMMARY ******************************'
130 130
echo
131 131
echo Package version............... : $PACKAGE-$VERSION
132 132
echo
133 133
echo C++ compiler.................. : $CXX
134 134
echo C++ compiles flags............ : $CXXFLAGS
135 135
echo
136 136
echo GLPK support.................. : $lx_glpk_found
137 137
echo CPLEX support................. : $lx_cplex_found
138 138
echo SOPLEX support................ : $lx_soplex_found
139 139
echo
140
echo build benchmarks.............. : $enable_benchmark
141
echo build demo programs........... : $enable_demo
142
echo build additional tools........ : $enable_tools
140
echo Build benchmarks.............. : $enable_benchmark
141
echo Build demo programs........... : $enable_demo
142
echo Build additional tools........ : $enable_tools
143 143
echo
144 144
echo The packace will be installed in
145 145
echo -n '  '
146 146
echo $prefix.
147 147
echo
148 148
echo The documentation will be installed in
149 149
echo -n '  '
150 150
eval echo ${datadir}/doc/$PACKAGE.
151 151
echo
152 152
echo '*********************************************************************'
153 153

	
154 154
echo
155
echo configure complete, now type \'make\' and then \'make install\'.
155
echo Configure complete, now type \'make\' and then \'make install\'.
156 156
echo
0 comments (0 inline)