1 | ## Process this file with autoconf to produce a configure script. |
---|
2 | ## |
---|
3 | ## $Id: configure.ac 739 2008-12-17 16:39:47Z peter $ |
---|
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 | # |
---|
16 | # This file is part of svndigest, http://dev.thep.lu.se/svndigest |
---|
17 | # |
---|
18 | # svndigest is free software; you can redistribute it and/or modify it |
---|
19 | # under the terms of the GNU General Public License as published by |
---|
20 | # the Free Software Foundation; either version 3 of the License, or |
---|
21 | # (at your option) any later version. |
---|
22 | # |
---|
23 | # svndigest is distributed in the hope that it will be useful, but |
---|
24 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
25 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
26 | # General Public License for more details. |
---|
27 | # |
---|
28 | # You should have received a copy of the GNU General Public License |
---|
29 | # along with svndigest. If not, see <http://www.gnu.org/licenses/>. |
---|
30 | |
---|
31 | AC_PREREQ(2.60) |
---|
32 | |
---|
33 | m4_include([build_support/version.m4]) |
---|
34 | AC_INIT([svndigest],[SVNDIGEST_VERSION],[jari@thep.lu.se]) |
---|
35 | AC_CONFIG_SRCDIR([lib/File.h]) |
---|
36 | AC_CONFIG_AUX_DIR([autotools]) |
---|
37 | dnl arg below should be the same as in Makefile.am |
---|
38 | AC_CONFIG_MACRO_DIR([build_support]) |
---|
39 | AC_PREFIX_DEFAULT([/usr/local]) |
---|
40 | test $prefix = NONE && prefix=/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 | # Let user overide default CXXFLAGS |
---|
62 | if test "${CXXFLAGS+set}" != set; then |
---|
63 | CXXFLAGS="" # Setting CXXFLAGS here to prevent expansion in AC_PROG_CXX |
---|
64 | fi |
---|
65 | |
---|
66 | # Checks for programs. |
---|
67 | AC_PROG_CXXCPP |
---|
68 | AC_PROG_CXX |
---|
69 | AC_PROG_INSTALL |
---|
70 | AC_PROG_RANLIB |
---|
71 | AC_PROG_SED |
---|
72 | AC_PATH_PROG([HELP2MAN], [help2man], [no]) |
---|
73 | AM_CONDITIONAL([HAVE_HELP2MAN], [test x$help2man != xno]) |
---|
74 | AC_CHECK_PROG([GNUPLOT],[gnuplot],[ok]) |
---|
75 | |
---|
76 | # Save FLAGS |
---|
77 | SAVE_CPPFLAGS="$CPPFLAGS" |
---|
78 | SAVE_CXXFLAGS="$CXXFLAGS" |
---|
79 | SAVE_LDFLAGS="$LDFLAGS" |
---|
80 | SAVE_LIBS="$LIBS" |
---|
81 | |
---|
82 | # -Wno-long-long is needed to suppress compiler diagnostics regarding |
---|
83 | # using extension beyond the C++ standard (usage of non C++ standard |
---|
84 | # 'long long' types). |
---|
85 | SD_CXXFLAGS="$SD_CXXFLAGS-Wall -pedantic -Wno-long-long" |
---|
86 | AC_TYPE_LONG_LONG_INT() |
---|
87 | |
---|
88 | AC_ARG_ENABLE(debug, |
---|
89 | [AS_HELP_STRING([--enable-debug],[turn on debug options and code])], |
---|
90 | [SD_CXXFLAGS="$SD_CXXFLAGS -g -O"; |
---|
91 | if test x$help2man = xno; then |
---|
92 | AC_MSG_WARN(m4_text_wrap(m4_normalize([ |
---|
93 | `help2man' is missing on your system. You will not be |
---|
94 | able to create the man page. A sound man page should be |
---|
95 | included in a distribution, and since you will not able |
---|
96 | to create a complete distribution `make dist' will fail. |
---|
97 | ]),[ ], |
---|
98 | [ ], 79)) |
---|
99 | fi], |
---|
100 | [SD_CPPFLAGS="-DNDEBUG" SD_CXXFLAGS="$SD_CXXFLAGS -O3"]) |
---|
101 | |
---|
102 | # Apache Portable Runtime (APR) API checks |
---|
103 | # The next three lines are not needed as long as APR_FIND_APR is used. |
---|
104 | # AC_ARG_WITH(apr, |
---|
105 | # [ --with-apr=DIR prefix for installed APR or path to APR build |
---|
106 | # tree [[PREFIX]]]) |
---|
107 | # Include APR_FIND_APR macro distributed within the APR project. If |
---|
108 | # the usage of the APR macro is to be omitted then the construct for |
---|
109 | # setting the CXXFLAGS (header file location) and LDFLAGS (linking |
---|
110 | # informaion) for APR must be changed. The latter can be achieved with |
---|
111 | # AC_SEARCH_LIBS([apr_allocator_create],[apr-0],,apr_found="no") but |
---|
112 | # apr-0 must be prior knowledge. |
---|
113 | APR_FIND_APR(,,1,[1 0]) |
---|
114 | if test "$apr_found" = "yes" ; then |
---|
115 | SD_LIBS="`$apr_config --libs` $SD_LIBS" |
---|
116 | SD_LDFLAGS="`$apr_config --link-ld` $SD_LDFLAGS" |
---|
117 | SD_CPPFLAGS="`$apr_config --includes --cppflags` $SD_CPPFLAGS" |
---|
118 | fi |
---|
119 | |
---|
120 | # Subversion API checks |
---|
121 | svn_found="yes" |
---|
122 | AC_ARG_WITH(svn, |
---|
123 | [AS_HELP_STRING([--with-svn=DIR],[prefix for svn developer files [[PREFIX]]])], |
---|
124 | [ SD_LDFLAGS="-L$withval/lib $SD_LDFLAGS" |
---|
125 | SD_CPPFLAGS="-I$withval/include $SD_CPPFLAGS"]) |
---|
126 | |
---|
127 | |
---|
128 | # Use SD_*FLAGS in tests |
---|
129 | CPPFLAGS="$SD_CPPFLAGS $CPPFLAGS" |
---|
130 | CXXFLAGS="$SD_CXXFLAGS $CXXFLAGS" |
---|
131 | LDFLAGS="$SD_LDFLAGS $LDFLAGS" |
---|
132 | LIBS="$SD_LIBS $LIBS" |
---|
133 | |
---|
134 | AC_CHECK_HEADER([apr_allocator.h],,apr_found="no") |
---|
135 | AC_CHECK_HEADER([subversion-1/svn_types.h],,svn_found="no") |
---|
136 | AC_SEARCH_LIBS([svn_cmdline_setup_auth_baton],[svn_subr-1], |
---|
137 | [SD_LIBS="-lsvn_subr-1 $SD_LIBS"],svn_found="no") |
---|
138 | AC_SEARCH_LIBS([svn_ra_initialize],[svn_ra-1], |
---|
139 | [SD_LIBS="-lsvn_ra-1 $SD_LIBS"],svn_found="no") |
---|
140 | AC_SEARCH_LIBS([svn_wc_adm_open3],[svn_wc-1], |
---|
141 | [SD_LIBS="-lsvn_wc-1 $SD_LIBS"],svn_found="no") |
---|
142 | AC_SEARCH_LIBS([svn_diff_file_options_create],[svn_diff-1], |
---|
143 | [SD_LIBS="-lsvn_diff-1 $SD_LIBS"],svn_found="no") |
---|
144 | AC_SEARCH_LIBS([svn_client_log3],[svn_client-1], |
---|
145 | [SD_LIBS="-lsvn_client-1 $SD_LIBS"],svn_found="no") |
---|
146 | |
---|
147 | # Export flags |
---|
148 | AC_SUBST([SVNDIGEST_CPPFLAGS], $SD_CPPFLAGS) |
---|
149 | AC_SUBST([SVNDIGEST_CXXFLAGS], $SD_CXXFLAGS) |
---|
150 | AC_SUBST([SVNDIGEST_LDFLAGS], $SD_LDFLAGS) |
---|
151 | AC_SUBST([SVNDIGEST_LIBS], $SD_LIBS) |
---|
152 | |
---|
153 | # Reset FLAGS |
---|
154 | CPPFLAGS="$SAVE_CPPFLAGS" |
---|
155 | CXXFLAGS="$SAVE_CXXFLAGS" |
---|
156 | LDFLAGS="$SAVE_LDFLAGS" |
---|
157 | LIBS="$SAVE_LIBS" |
---|
158 | |
---|
159 | # check if svnversion is installed |
---|
160 | AC_PATH_PROG([SVNVERSION], [svnversion], [no]) |
---|
161 | |
---|
162 | # checking if we build in a subversion WC |
---|
163 | AC_CHECK_FILE([$srcdir/.svn], [wc_found="yes"], [wc_found="no"]) |
---|
164 | AM_CONDITIONAL([HAVE_SVN_WC], [test "$wc_found" = "yes"]) |
---|
165 | AC_SUBST([wc_found]) |
---|
166 | |
---|
167 | # checking if we have test repo |
---|
168 | test_repo_filename=$srcdir/test/repo; |
---|
169 | AC_CHECK_FILE([$test_repo_filename], [test_repo_found="yes"], |
---|
170 | [test_repo_found="no"]) |
---|
171 | AM_CONDITIONAL([HAVE_TEST_REPO], [test "$test_repo_found" = "yes"]) |
---|
172 | if (test "$test_repo_found" = "yes"); then |
---|
173 | dnl test repo is not distributed |
---|
174 | AC_CONFIG_FILES([test/test_repo.sh], [chmod +x test/test_repo.sh]) |
---|
175 | AC_CONFIG_FILES([test/check_repo_status.sh], |
---|
176 | [chmod +x test/check_repo_status.sh]) |
---|
177 | fi |
---|
178 | |
---|
179 | |
---|
180 | AC_CONFIG_FILES([Makefile |
---|
181 | bin/Makefile |
---|
182 | lib/Makefile |
---|
183 | man/Makefile |
---|
184 | test/environment.h |
---|
185 | test/Makefile]) |
---|
186 | |
---|
187 | # Print failure status information about selected items, and exit if |
---|
188 | # fatal errors were encountered. No output will be created if |
---|
189 | # configure is halted prematurely. |
---|
190 | |
---|
191 | # used to trigger exit before creation of output |
---|
192 | all_reqs_ok="true" |
---|
193 | |
---|
194 | if (test "$wc_found" = "yes"); then |
---|
195 | # svnversion is required when building from svn wc |
---|
196 | if (test "$svnversion" = "no"); then |
---|
197 | all_reqs_ok="false"; |
---|
198 | AC_MSG_WARN([dnl |
---|
199 | Cannot find svnversion, which is required when building from a |
---|
200 | subversion working copy. Please install svnversion and make sure it is |
---|
201 | in your search path.]); |
---|
202 | fi |
---|
203 | if (test "$test_repo_found" = "no"); then |
---|
204 | all_reqs_ok="false"; |
---|
205 | AC_MSG_WARN([dnl |
---|
206 | Cannot find test repository (test_repo_filename), which should be |
---|
207 | available when building from a subversion working copy. Try svn |
---|
208 | update in top directory.]); |
---|
209 | fi |
---|
210 | fi |
---|
211 | |
---|
212 | # Non-existing APR is fatal -- sub-sequent compilation will fail. |
---|
213 | if (test "$apr_found" = "no") ; then |
---|
214 | AC_MSG_WARN([APR not found. The Apache Portable Runtime |
---|
215 | (APR) library cannot be found. Please make sure APR is installed |
---|
216 | and supply the appropriate --with-apr option to 'configure'.]) |
---|
217 | all_reqs_ok="false" |
---|
218 | fi |
---|
219 | |
---|
220 | # Non-existing subversion API is fatal -- sub-sequent compilation will fail. |
---|
221 | if (test "$svn_found" = "no") ; then |
---|
222 | svn_msg="Subversion API not found. Subversion API libraries cannot |
---|
223 | be found. Make sure the APIs are installed and supply the |
---|
224 | appropriate --with-svn option to 'configure'." |
---|
225 | if (test "$apr_found" = "no") ; then |
---|
226 | svn_msg="$svn_msg |
---|
227 | Note, APR was not found. Failure to locate APR affects the search |
---|
228 | of the subversion API. Please fix the APR problem before trying |
---|
229 | to resolve the subversion related issues." |
---|
230 | fi |
---|
231 | AC_MSG_WARN([$svn_msg]) |
---|
232 | all_reqs_ok="false" |
---|
233 | fi |
---|
234 | |
---|
235 | if test $ac_cv_type_long_long_int != yes ; then |
---|
236 | AC_MSG_WARN([Compiler $CXX does not support `long long'. |
---|
237 | svndigest must be compiled with a compiler that supports `long long'.]) |
---|
238 | all_reqs_ok="false" |
---|
239 | fi |
---|
240 | |
---|
241 | if (test "$all_reqs_ok" = "false") ; then |
---|
242 | AC_MSG_ERROR([Some pre-requisites were not fulfilled, aborting |
---|
243 | configure. Please consult the 'README' file for more information |
---|
244 | about what is needed to compile svndigest and refer to above |
---|
245 | warning messages. Needed files were NOT created.]) |
---|
246 | fi |
---|
247 | |
---|
248 | # Create output. |
---|
249 | AC_OUTPUT |
---|
250 | |
---|
251 | # Some more messages. |
---|
252 | AC_MSG_NOTICE([]) |
---|
253 | AC_MSG_NOTICE([ Ready to compile the executables of svndigest $VERSION]) |
---|
254 | AC_MSG_NOTICE([ The following flags and libs will be used:]) |
---|
255 | AC_MSG_NOTICE([ +++++++++++++++++++++++++++++++++++++++++++++++]) |
---|
256 | AC_MSG_NOTICE([ Compiler: $CXX]) |
---|
257 | AC_MSG_NOTICE([ Preprocessor flags: $SD_CPPFLAGS $CPPFLAGS]) |
---|
258 | AC_MSG_NOTICE([ C++ flags: $SD_CXXFLAGS $CXXFLAGS]) |
---|
259 | AC_MSG_NOTICE([ Linker flags: $SD_LDFLAGS $LDFLAGS]) |
---|
260 | AC_MSG_NOTICE([ LIBS: $SD_LIBS $LIBS]) |
---|
261 | AC_MSG_NOTICE([ +++++++++++++++++++++++++++++++++++++++++++++++]) |
---|
262 | AC_MSG_NOTICE([]) |
---|
263 | |
---|
264 | # Failure to locate gnuplot is not considered fatal |
---|
265 | if (test "$GNUPLOT" != "ok") ; then |
---|
266 | AC_MSG_WARN([Gnuplot was not found. svndigest will compile |
---|
267 | without gnuplot but will throw an exception at run-time. Please |
---|
268 | install gnuplot (available for a wide range of operating systems |
---|
269 | at http://www.gnuplot.info).]) |
---|
270 | AC_MSG_NOTICE([]) |
---|
271 | fi |
---|
272 | |
---|
273 | AC_MSG_NOTICE([Now type 'make ; make check'.]) |
---|