1 | ## Process this file with autoconf to produce a configure script. |
---|
2 | ## |
---|
3 | ## $Id: configure.ac 784 2009-04-09 20:18:54Z jari $ |
---|
4 | ## |
---|
5 | ## If you grabbed the source from subversion you should, at top-level, |
---|
6 | ## execute: |
---|
7 | ## ./bootstrap |
---|
8 | ## To push subsequent changes of this file into the build scripts you |
---|
9 | ## must issue: |
---|
10 | ## autoreconf |
---|
11 | |
---|
12 | # Copyright (C) 2005 Jari Häkkinen, Peter Johansson |
---|
13 | # Copyright (C) 2006 Jari Häkkinen |
---|
14 | # Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson |
---|
15 | # Copyright (C) 2009 Peter Johansson |
---|
16 | # |
---|
17 | # This file is part of svndigest, http://dev.thep.lu.se/svndigest |
---|
18 | # |
---|
19 | # svndigest is free software; you can redistribute it and/or modify it |
---|
20 | # under the terms of the GNU General Public License as published by |
---|
21 | # the Free Software Foundation; either version 3 of the License, or |
---|
22 | # (at your option) any later version. |
---|
23 | # |
---|
24 | # svndigest is distributed in the hope that it will be useful, but |
---|
25 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
26 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
27 | # General Public License for more details. |
---|
28 | # |
---|
29 | # You should have received a copy of the GNU General Public License |
---|
30 | # along with svndigest. If not, see <http://www.gnu.org/licenses/>. |
---|
31 | |
---|
32 | AC_PREREQ(2.61) |
---|
33 | |
---|
34 | m4_include([m4/version.m4]) |
---|
35 | AC_INIT([svndigest],[SVNDIGEST_VERSION],[jari@thep.lu.se]) |
---|
36 | AC_CONFIG_SRCDIR([lib/File.h]) |
---|
37 | AC_CONFIG_AUX_DIR([autotools]) |
---|
38 | dnl arg below should be the same as in Makefile.am |
---|
39 | AC_CONFIG_MACRO_DIR([m4]) |
---|
40 | AC_PREFIX_DEFAULT([/usr/local]) |
---|
41 | |
---|
42 | AC_SUBST([SVNDIGEST_MAJOR_VERSION], [MAJOR_VERSION]) |
---|
43 | AC_SUBST([SVNDIGEST_MINOR_VERSION], [MINOR_VERSION]) |
---|
44 | AC_SUBST([SVNDIGEST_PATCH_VERSION], [PATCH_VERSION]) |
---|
45 | |
---|
46 | AC_DEFINE([DEV_BUILD],[SVNDIGEST_DEV_BUILD], |
---|
47 | [true if dev build (version ends with pre)]) |
---|
48 | AC_DEFINE([SVNDIGEST_MAJOR_VERSION], [MAJOR_VERSION], |
---|
49 | [Define to the svndigest major version]) |
---|
50 | AC_DEFINE([SVNDIGEST_MINOR_VERSION], [MINOR_VERSION], |
---|
51 | [Define to the svndigest minor version]) |
---|
52 | AC_DEFINE([SVNDIGEST_PATCH_VERSION], [PATCH_VERSION], |
---|
53 | [Define to the svndigest patch version]) |
---|
54 | |
---|
55 | AC_CONFIG_HEADER([config.h]) |
---|
56 | AM_INIT_AUTOMAKE([1.10 std-options check-news]) |
---|
57 | |
---|
58 | # Set default programming language |
---|
59 | AC_LANG(C++) |
---|
60 | |
---|
61 | # propagate selected configure variables to DISTCHECK_CONFIGURE_FLAGS |
---|
62 | for var in CPPFLAGS CXX CXXFLAGS CXXCPP LDFLAGS LIBS; do |
---|
63 | eval isset=\${$var+set} |
---|
64 | if test "$isset" = 'set' ; then |
---|
65 | eval val=$`echo $var` |
---|
66 | DISTCHECK_CONFIGURE_FLAGS="${DISTCHECK_CONFIGURE_FLAGS}'${var}=${val}' " |
---|
67 | fi |
---|
68 | done |
---|
69 | AC_SUBST(DISTCHECK_CONFIGURE_FLAGS) |
---|
70 | |
---|
71 | # Let user overide default CXXFLAGS |
---|
72 | if test "${CXXFLAGS+set}" != set; then |
---|
73 | CXXFLAGS="" # Setting CXXFLAGS here to prevent expansion in AC_PROG_CXX |
---|
74 | fi |
---|
75 | |
---|
76 | # Checks for programs. |
---|
77 | AC_PROG_CXXCPP |
---|
78 | AC_PROG_CXX |
---|
79 | AC_PROG_INSTALL |
---|
80 | AC_PROG_RANLIB |
---|
81 | AC_PROG_SED |
---|
82 | AC_PATH_PROG([HELP2MAN], [help2man], [no]) |
---|
83 | AM_CONDITIONAL([HAVE_HELP2MAN], [test x$HELP2MAN != xno]) |
---|
84 | AC_PATH_PROG([GNUPLOT],[gnuplot],[no]) |
---|
85 | AC_DEFINE_UNQUOTED([GNUPLOT_PATH], ["$GNUPLOT"], |
---|
86 | [defined to gnuplot path (or no if gnuplot was not found)]) |
---|
87 | |
---|
88 | # Save FLAGS |
---|
89 | SAVE_CPPFLAGS="$CPPFLAGS" |
---|
90 | SAVE_CXXFLAGS="$CXXFLAGS" |
---|
91 | SAVE_LDFLAGS="$LDFLAGS" |
---|
92 | SAVE_LIBS="$LIBS" |
---|
93 | |
---|
94 | # -Wno-long-long is needed to suppress compiler diagnostics regarding |
---|
95 | # using extension beyond the C++ standard (usage of non C++ standard |
---|
96 | # 'long long' types). |
---|
97 | YAT_CXX_ADD_FLAG([SD_CXXFLAGS],[-pedantic -Wno-long-long]) |
---|
98 | AC_TYPE_LONG_LONG_INT |
---|
99 | AS_IF([test x$ac_cv_type_long_long_int = xno], |
---|
100 | [AC_MSG_ERROR([compiler does not support long long int])] |
---|
101 | ) |
---|
102 | |
---|
103 | AC_ARG_ENABLE([debug], |
---|
104 | [AS_HELP_STRING([--enable-debug],[turn on debug options and code])], |
---|
105 | [YAT_CXX_ADD_FLAG([SD_CXXFLAGS],[-g -O])], |
---|
106 | [YAT_CPP_ADD_FLAG([SD_CPPFLAGS],[-DNDEBUG]) |
---|
107 | YAT_CXX_ADD_FLAG([SD_CXXFLAGS],[-O3])]) |
---|
108 | |
---|
109 | # enable svn-support |
---|
110 | AC_ARG_ENABLE([svn-support], |
---|
111 | [AS_HELP_STRING([--enable-svn-support], |
---|
112 | [enable svn support - used by maintainer])]) |
---|
113 | |
---|
114 | AS_IF([test "x$enable_svn-support" = xyes], |
---|
115 | [AC_CHECK_FILE([$srcdir/.svn],, |
---|
116 | [AC_MSG_ERROR([svn support cannot be enabled: `$srcdir' is not an svn wc.])])]) |
---|
117 | AM_CONDITIONAL([ENABLE_SVN_SUPPORT], [test "x$enable_svn-support" = "xyes"]) |
---|
118 | |
---|
119 | # Apache Portable Runtime (APR) API checks |
---|
120 | APR_FIND_APR(,,1,[1 0]) |
---|
121 | AS_IF([test "${with_apr+set}" = set], |
---|
122 | [DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --with-apr=$with_apr"] |
---|
123 | ) |
---|
124 | if test "$apr_found" = "yes" ; then |
---|
125 | SD_LIBS="`$apr_config --libs` $SD_LIBS" |
---|
126 | apr_link_ld=`$apr_config --link-ld` |
---|
127 | for i in $apr_link_ld; do |
---|
128 | AS_IF([test ${i:0:2} = "-l"],[SD_LIBS="$i $SD_LIBS"], |
---|
129 | [YAT_LD_ADD_FLAG([SD_LDFLAGS], [$i])]) |
---|
130 | done |
---|
131 | YAT_CPP_ADD_FLAG([SD_CPPFLAGS],[`$apr_config --includes --cppflags`]) |
---|
132 | fi |
---|
133 | |
---|
134 | # Subversion API checks |
---|
135 | svn_found="yes" |
---|
136 | AC_ARG_WITH(svn, |
---|
137 | [AS_HELP_STRING([--with-svn=DIR],[prefix for svn developer files [[PREFIX]]])], |
---|
138 | [ DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --with-svn=$withval" |
---|
139 | YAT_LD_ADD_FLAG([SD_LDFLAGS], [-L$withval/lib]) |
---|
140 | YAT_CPP_ADD_FLAG([SD_CPPFLAGS], [-L$withval/include]) |
---|
141 | ]) |
---|
142 | |
---|
143 | |
---|
144 | |
---|
145 | # Use SD_*FLAGS in tests |
---|
146 | CPPFLAGS="$SD_CPPFLAGS $CPPFLAGS" |
---|
147 | CXXFLAGS="$SD_CXXFLAGS $CXXFLAGS" |
---|
148 | LDFLAGS="$SD_LDFLAGS $LDFLAGS" |
---|
149 | LIBS="$SD_LIBS $LIBS" |
---|
150 | |
---|
151 | AC_CHECK_HEADER([apr_allocator.h],,apr_found="no") |
---|
152 | AC_CHECK_HEADER([subversion-1/svn_types.h],,svn_found="no") |
---|
153 | AC_SEARCH_LIBS([svn_cmdline_setup_auth_baton],[svn_subr-1], |
---|
154 | [SD_LIBS="-lsvn_subr-1 $SD_LIBS"],svn_found="no") |
---|
155 | AC_SEARCH_LIBS([svn_ra_initialize],[svn_ra-1], |
---|
156 | [SD_LIBS="-lsvn_ra-1 $SD_LIBS"],svn_found="no") |
---|
157 | AC_SEARCH_LIBS([svn_wc_adm_open3],[svn_wc-1], |
---|
158 | [SD_LIBS="-lsvn_wc-1 $SD_LIBS"],svn_found="no") |
---|
159 | AC_SEARCH_LIBS([svn_diff_file_options_create],[svn_diff-1], |
---|
160 | [SD_LIBS="-lsvn_diff-1 $SD_LIBS"],svn_found="no") |
---|
161 | AC_SEARCH_LIBS([svn_client_log3],[svn_client-1], |
---|
162 | [SD_LIBS="-lsvn_client-1 $SD_LIBS"],svn_found="no") |
---|
163 | |
---|
164 | # Export flags |
---|
165 | AC_SUBST([SVNDIGEST_CPPFLAGS], $SD_CPPFLAGS) |
---|
166 | AC_SUBST([SVNDIGEST_CXXFLAGS], $SD_CXXFLAGS) |
---|
167 | AC_SUBST([SVNDIGEST_LDFLAGS], $SD_LDFLAGS) |
---|
168 | AC_SUBST([SVNDIGEST_LIBS], $SD_LIBS) |
---|
169 | |
---|
170 | # Reset FLAGS |
---|
171 | CPPFLAGS="$SAVE_CPPFLAGS" |
---|
172 | CXXFLAGS="$SAVE_CXXFLAGS" |
---|
173 | LDFLAGS="$SAVE_LDFLAGS" |
---|
174 | LIBS="$SAVE_LIBS" |
---|
175 | |
---|
176 | # check if svnversion is installed |
---|
177 | AC_PATH_PROG([SVNVERSION], [svnversion], [no]) |
---|
178 | |
---|
179 | # checking if we build in a subversion WC |
---|
180 | AC_CHECK_FILE([$srcdir/.svn], [wc_found="yes"], [wc_found="no"]) |
---|
181 | AM_CONDITIONAL([HAVE_SVN_WC], [test "$wc_found" = "yes"]) |
---|
182 | AC_SUBST([wc_found]) |
---|
183 | |
---|
184 | # checking if we have test repo |
---|
185 | test_repo_filename=$srcdir/test/repo; |
---|
186 | AC_CHECK_FILE([$test_repo_filename], |
---|
187 | [AC_DEFINE([HAVE_TEST_REPO],[1],[define if test repo is available]) |
---|
188 | test_repo_found="yes"], |
---|
189 | [test_repo_found="no"]) |
---|
190 | AC_SUBST([test_repo_found]) |
---|
191 | AS_IF([test "x$test_repo_found" = xyes], |
---|
192 | [abs_test_repo=`cd $test_repo_filename && pwd`; |
---|
193 | AC_SUBST(abs_test_repo)] |
---|
194 | ) |
---|
195 | AC_CONFIG_FILES([test/test_repo.sh], [chmod +x test/test_repo.sh]) |
---|
196 | AC_CONFIG_FILES([test/svn_update.sh], [chmod +x test/svn_update.sh]) |
---|
197 | AC_CONFIG_FILES([test/check_repo_status.sh], |
---|
198 | [chmod +x test/check_repo_status.sh]) |
---|
199 | |
---|
200 | |
---|
201 | AC_CONFIG_FILES([Makefile |
---|
202 | bin/Makefile |
---|
203 | lib/Makefile |
---|
204 | man/Makefile |
---|
205 | test/environment.h |
---|
206 | test/Makefile]) |
---|
207 | |
---|
208 | # Print failure status information about selected items, and exit if |
---|
209 | # fatal errors were encountered. No output will be created if |
---|
210 | # configure is halted prematurely. |
---|
211 | |
---|
212 | # used to trigger exit before creation of output |
---|
213 | all_reqs_ok="true" |
---|
214 | |
---|
215 | if (test "$wc_found" = "yes"); then |
---|
216 | if test x$HELP2MAN = xno; then |
---|
217 | AC_MSG_WARN(m4_text_wrap(m4_normalize([ |
---|
218 | `help2man' is missing on your system. You will not be |
---|
219 | able to create the man page. A sound man page should be |
---|
220 | included in a distribution, and since you will not able |
---|
221 | to create a complete distribution `make dist' will fail. |
---|
222 | ]),[ ], |
---|
223 | [ ], 79)) |
---|
224 | fi |
---|
225 | # svnversion is required when building from svn wc |
---|
226 | if (test "$svnversion" = "no"); then |
---|
227 | all_reqs_ok="false"; |
---|
228 | AC_MSG_WARN([dnl |
---|
229 | Cannot find svnversion, which is required when building from a |
---|
230 | subversion working copy. Please install svnversion and make sure it is |
---|
231 | in your search path.]); |
---|
232 | fi |
---|
233 | if (test "$test_repo_found" = "no"); then |
---|
234 | all_reqs_ok="false"; |
---|
235 | AC_MSG_WARN([dnl |
---|
236 | Cannot find test repository (test_repo_filename), which should be |
---|
237 | available when building from a subversion working copy. Try svn |
---|
238 | update in top directory.]); |
---|
239 | fi |
---|
240 | fi |
---|
241 | |
---|
242 | # Non-existing APR is fatal -- sub-sequent compilation will fail. |
---|
243 | if (test "$apr_found" = "no") ; then |
---|
244 | AC_MSG_WARN([APR not found. The Apache Portable Runtime |
---|
245 | (APR) library cannot be found. Please make sure APR is installed |
---|
246 | and supply the appropriate --with-apr option to 'configure'.]) |
---|
247 | all_reqs_ok="false" |
---|
248 | fi |
---|
249 | |
---|
250 | # Non-existing subversion API is fatal -- sub-sequent compilation will fail. |
---|
251 | if (test "$svn_found" = "no") ; then |
---|
252 | svn_msg="Subversion API not found. Subversion API libraries cannot |
---|
253 | be found. Make sure the APIs are installed and supply the |
---|
254 | appropriate --with-svn option to 'configure'." |
---|
255 | if (test "$apr_found" = "no") ; then |
---|
256 | svn_msg="$svn_msg |
---|
257 | Note, APR was not found. Failure to locate APR affects the search |
---|
258 | of the subversion API. Please fix the APR problem before trying |
---|
259 | to resolve the subversion related issues." |
---|
260 | fi |
---|
261 | AC_MSG_WARN([$svn_msg]) |
---|
262 | all_reqs_ok="false" |
---|
263 | fi |
---|
264 | |
---|
265 | if test $ac_cv_type_long_long_int != yes ; then |
---|
266 | AC_MSG_WARN([Compiler $CXX does not support `long long'. |
---|
267 | svndigest must be compiled with a compiler that supports `long long'.]) |
---|
268 | all_reqs_ok="false" |
---|
269 | fi |
---|
270 | |
---|
271 | if (test "$all_reqs_ok" = "false") ; then |
---|
272 | AC_MSG_ERROR([Some pre-requisites were not fulfilled, aborting |
---|
273 | configure. Please consult the 'README' file for more information |
---|
274 | about what is needed to compile svndigest and refer to above |
---|
275 | warning messages. Needed files were NOT created.]) |
---|
276 | fi |
---|
277 | |
---|
278 | # Create output. |
---|
279 | AC_OUTPUT |
---|
280 | |
---|
281 | # Some more messages. |
---|
282 | AC_MSG_NOTICE([]) |
---|
283 | AC_MSG_NOTICE([ Ready to compile the executables of svndigest $VERSION]) |
---|
284 | AC_MSG_NOTICE([ The following flags and libs will be used:]) |
---|
285 | AC_MSG_NOTICE([ +++++++++++++++++++++++++++++++++++++++++++++++]) |
---|
286 | AC_MSG_NOTICE([ Compiler: $CXX]) |
---|
287 | AC_MSG_NOTICE([ Preprocessor flags: $SD_CPPFLAGS $CPPFLAGS]) |
---|
288 | AC_MSG_NOTICE([ C++ flags: $SD_CXXFLAGS $CXXFLAGS]) |
---|
289 | AC_MSG_NOTICE([ Linker flags: $SD_LDFLAGS $LDFLAGS]) |
---|
290 | AC_MSG_NOTICE([ LIBS: $SD_LIBS $LIBS]) |
---|
291 | AC_MSG_NOTICE([ +++++++++++++++++++++++++++++++++++++++++++++++]) |
---|
292 | AC_MSG_NOTICE([]) |
---|
293 | |
---|
294 | # Failure to locate gnuplot is not considered fatal |
---|
295 | if (test "x$GNUPLOT" = "xno") ; then |
---|
296 | AC_MSG_WARN([Gnuplot was not found. svndigest will compile |
---|
297 | without gnuplot but will throw an exception at run-time. Please |
---|
298 | install gnuplot (available for a wide range of operating systems |
---|
299 | at http://www.gnuplot.info).]) |
---|
300 | AC_MSG_NOTICE([]) |
---|
301 | fi |
---|
302 | |
---|
303 | AC_MSG_NOTICE([Now type 'make && make check'.]) |
---|