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