source: trunk/configure.ac @ 693

Last change on this file since 693 was 693, checked in by Jari Häkkinen, 15 years ago

Fixes #339. Change to GPLv3.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 9.7 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id: configure.ac 693 2008-09-11 20:42:56Z 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#
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
31AC_PREREQ(2.60)
32
33
34m4_include([./build_support/version.m4])
35AC_INIT([svndigest],[SVNDIGEST_VERSION],[jari@thep.lu.se])
36AC_CONFIG_SRCDIR([lib/File.h])
37AC_CONFIG_AUX_DIR([autotools])
38AC_PREFIX_DEFAULT([/usr/local])
39test $prefix = NONE && prefix=/usr/local
40
41AC_SUBST([SVNDIGEST_MAJOR_VERSION], [MAJOR_VERSION])
42AC_SUBST([SVNDIGEST_MINOR_VERSION], [MINOR_VERSION])
43AC_SUBST([SVNDIGEST_PATCH_VERSION], [PATCH_VERSION])
44
45AC_DEFINE([DEV_BUILD],[SVNDIGEST_DEV_BUILD],
46          [true if dev build (version starts with pre)])
47AC_DEFINE([SVNDIGEST_MAJOR_VERSION], [MAJOR_VERSION],
48                    [Define to the svndigest major version])
49AC_DEFINE([SVNDIGEST_MINOR_VERSION], [MINOR_VERSION],
50                    [Define to the svndigest minor version])
51AC_DEFINE([SVNDIGEST_PATCH_VERSION], [PATCH_VERSION],
52                    [Define to the svndigest patch version])
53
54AC_CONFIG_HEADER([config.h])
55AM_INIT_AUTOMAKE([std-options check-news])
56
57# seems like these variables are not set with older autoconf(?)
58AC_SUBST([abs_srcdir], ["`cd $srcdir && pwd`"])
59AC_SUBST([abs_builddir], ["`pwd`"])
60
61# Set default programming language
62AC_LANG(C++)
63
64# Let user overide default CXXFLAGS
65if test "${CXXFLAGS+set}" != set; then
66  CXXFLAGS=""  # Setting CXXFLAGS here to prevent expansion in AC_PROG_CXX
67fi
68
69# Checks for programs.
70AC_PROG_CXXCPP
71AC_PROG_CXX
72AC_PROG_INSTALL
73AC_PROG_RANLIB
74AC_PROG_SED
75AC_CHECK_PROG([GNUPLOT],[gnuplot],[ok])
76
77# Save FLAGS
78SAVE_CPPFLAGS="$CPPFLAGS"
79SAVE_CXXFLAGS="$CXXFLAGS"
80SAVE_LDFLAGS="$LDFLAGS"
81SAVE_LIBS="$LIBS"
82
83# -Wno-long-long is needed to suppress compiler diagnostics regarding
84# using extension beyond the C++ standard (usage of non C++ standard
85# 'long long' types).
86SD_CXXFLAGS="$SD_CXXFLAGS-Wall -pedantic -Wno-long-long"
87AC_TYPE_LONG_LONG_INT()
88
89AC_ARG_ENABLE(debug,
90  [AS_HELP_STRING([--enable-debug],[turn on debug options and code])],
91  [SD_CXXFLAGS="$SD_CXXFLAGS -g -O"],
92  [SD_CPPFLAGS="-DNDEBUG" SD_CXXFLAGS="$SD_CXXFLAGS -O3"])
93
94# Apache Portable Runtime (APR) API checks
95# The next three lines are not needed as long as APR_FIND_APR is used.
96# AC_ARG_WITH(apr,
97#  [  --with-apr=DIR          prefix for installed APR or path to APR build
98#                          tree [[PREFIX]]])
99# Include APR_FIND_APR macro distributed within the APR project. If
100# the usage of the APR macro is to be omitted then the construct for
101# setting the CXXFLAGS (header file location) and LDFLAGS (linking
102# informaion) for APR must be changed. The latter can be achieved with
103# AC_SEARCH_LIBS([apr_allocator_create],[apr-0],,apr_found="no") but
104# apr-0 must be prior knowledge.
105m4_sinclude(./build_support/find_apr.m4)
106APR_FIND_APR(,,1,[1 0])
107if test "$apr_found" = "yes" ; then
108    SD_LIBS="`$apr_config --libs` $SD_LIBS"
109    SD_LDFLAGS="`$apr_config --link-ld` $SD_LDFLAGS"
110    SD_CPPFLAGS="`$apr_config --includes --cppflags` $SD_CPPFLAGS"
111fi
112
113# Subversion API checks
114svn_found="yes"
115AC_ARG_WITH(svn,
116  [AS_HELP_STRING([--with-svn=DIR],[prefix for svn developer files [[PREFIX]]])],
117  [ SD_LDFLAGS="-L$withval/lib $SD_LDFLAGS"
118    SD_CPPFLAGS="-I$withval/include $SD_CPPFLAGS"])
119
120
121# Use SD_*FLAGS in tests
122CPPFLAGS="$SD_CPPFLAGS $CPPFLAGS"
123CXXFLAGS="$SD_CXXFLAGS $CXXFLAGS"
124LDFLAGS="$SD_LDFLAGS $LDFLAGS"
125LIBS="$SD_LIBS $LIBS"
126
127AC_CHECK_HEADER([apr_allocator.h],,apr_found="no")
128AC_CHECK_HEADER([subversion-1/svn_types.h],,svn_found="no")
129AC_SEARCH_LIBS([svn_cmdline_setup_auth_baton],[svn_subr-1],
130               [SD_LIBS="-lsvn_subr-1 $SD_LIBS"],svn_found="no")
131AC_SEARCH_LIBS([svn_ra_initialize],[svn_ra-1],
132               [SD_LIBS="-lsvn_ra-1 $SD_LIBS"],svn_found="no")
133AC_SEARCH_LIBS([svn_wc_adm_open3],[svn_wc-1],
134               [SD_LIBS="-lsvn_wc-1 $SD_LIBS"],svn_found="no")
135AC_SEARCH_LIBS([svn_diff_file_options_create],[svn_diff-1],
136               [SD_LIBS="-lsvn_diff-1 $SD_LIBS"],svn_found="no")
137AC_SEARCH_LIBS([svn_client_log3],[svn_client-1],
138               [SD_LIBS="-lsvn_client-1 $SD_LIBS"],svn_found="no")
139
140# Export flags
141AC_SUBST([SVNDIGEST_CPPFLAGS], $SD_CPPFLAGS)
142AC_SUBST([SVNDIGEST_CXXFLAGS], $SD_CXXFLAGS)
143AC_SUBST([SVNDIGEST_LDFLAGS], $SD_LDFLAGS)
144AC_SUBST([SVNDIGEST_LIBS], $SD_LIBS)
145
146# Reset FLAGS
147CPPFLAGS="$SAVE_CPPFLAGS"
148CXXFLAGS="$SAVE_CXXFLAGS"
149LDFLAGS="$SAVE_LDFLAGS"
150LIBS="$SAVE_LIBS"
151
152# check if svnversion is installed
153AC_PATH_PROG([SVNVERSION], [svnversion], [no])
154
155# checking if we build in a subversion WC
156wc_found="no";
157if (test "$SVNVERSION" != "no" &&
158  test `$SVNVERSION -n $srcdir` != "exported");
159then
160  wc_found="yes";
161fi
162AC_CHECK_FILE("$srcdir/lib/subversion_info.cc",info_found="yes",info_found="no")
163
164# checking that DEV_BUILD is set to false at time of release
165# Failure should be captured by distcheck
166if (test "$wc_found" = "no" && test "$SVNDIGEST_DEV_BUILD" = "true") ; then
167  AC_MSG_ERROR([Incorrect version:
168               [SVNDIGEST_DEV_BUILD] is set to SVNDIGEST_DEV_BUILD.
169         [SVNDIGEST_DEV_BUILD] should be set to false at time of release.
170               Please, update version.m4.])
171fi
172
173
174# devel version should have svn WC and SVNVERSION installed
175AM_CONDITIONAL(HAVE_SVN_WC, test "$wc_found" = "yes" )
176
177
178AC_CONFIG_FILES([Makefile
179                bin/Makefile
180                lib/Makefile
181                test/environment.h
182                test/Makefile])
183
184# Print failure status information about selected items, and exit if
185# fatal errors were encountered. No output will be created if
186# configure is halted prematurely.
187
188# used to trigger exit before creation of output
189all_reqs_ok="true"
190
191if (test "$wc_found" != "yes") ; then
192if (test "$info_found" = "no") ; then
193   AC_MSG_WARN([Cannot find sources (lib/subversion_info.cc).])
194   if (test "$svnversion" = "no") ; then
195     AC_MSG_WARN([If you grabbed the source from the subversion repository,
196     the file will be generated automatically. However, svnversion cannot
197     be found and therefore the file cannot be generated. Please install
198     svnversion and make sure it is in your search path.])
199   else
200     AC_MSG_WARN([If you grabbed the source from the subversion repository,
201     the file will be generated automatically. However, the output from
202     svnversion was incorrect. Either your installation of svnversion is
203     is not healthy or there is something wrong with the repository.])
204   fi
205   all_reqs_ok="false"
206fi
207else
208  dnl test repo is not distributed
209  AC_CONFIG_FILES([test/test_repo.sh], [chmod +x test/test_repo.sh])
210  AC_CONFIG_FILES([test/check_repo_status.sh], [chmod +x test/check_repo_status.sh])   
211fi
212
213# Non-existing APR is fatal -- sub-sequent compilation will fail.
214if (test "$apr_found" = "no") ; then
215  AC_MSG_WARN([APR not found. The Apache Portable Runtime
216  (APR) library cannot be found. Please make sure APR is installed
217  and supply the appropriate --with-apr option to 'configure'.])
218  all_reqs_ok="false"
219fi
220
221# Non-existing subversion API is fatal -- sub-sequent compilation will fail.
222if (test "$svn_found" = "no") ; then
223  svn_msg="Subversion API not found. Subversion API libraries cannot
224  be found. Make sure the APIs are installed and supply the
225  appropriate --with-svn option to 'configure'."
226  if (test "$apr_found" = "no") ; then
227    svn_msg="$svn_msg
228    Note, APR was not found. Failure to locate APR affects the search
229    of the subversion API. Please fix the APR problem before trying
230    to resolve the subversion related issues."
231  fi
232  AC_MSG_WARN([$svn_msg])
233  all_reqs_ok="false"
234fi
235
236if test $ac_cv_type_long_long_int != yes ; then
237  AC_MSG_WARN([Compiler $CXX does not support `long long'.
238  svndigest must be compiled with a compiler that supports `long long'.])
239  all_reqs_ok="false"
240fi
241
242if (test "$all_reqs_ok" = "false") ; then
243  AC_MSG_ERROR([Some pre-requisites were not fulfilled, aborting
244  configure. Please consult the 'README' file for more information
245  about what is needed to compile svndigest and refer to above
246  warning messages. Needed files were NOT created.])
247fi
248
249# Create output.
250AC_OUTPUT
251
252# Some more messages.
253AC_MSG_NOTICE([])
254AC_MSG_NOTICE([   Ready to compile the executables of svndigest $VERSION])
255AC_MSG_NOTICE([   The following flags and libs will be used:])
256AC_MSG_NOTICE([   +++++++++++++++++++++++++++++++++++++++++++++++])
257AC_MSG_NOTICE([    Compiler:           $CXX])
258AC_MSG_NOTICE([    Preprocessor flags: $SD_CPPFLAGS $CPPFLAGS])
259AC_MSG_NOTICE([    C++ flags:          $SD_CXXFLAGS $CXXFLAGS])
260AC_MSG_NOTICE([    Linker flags:       $SD_LDFLAGS $LDFLAGS])
261AC_MSG_NOTICE([    LIBS:               $SD_LIBS $LIBS])
262AC_MSG_NOTICE([   +++++++++++++++++++++++++++++++++++++++++++++++])
263AC_MSG_NOTICE([])
264
265# Failure to locate gnuplot is not considered fatal
266if (test "$GNUPLOT" != "ok") ; then
267  AC_MSG_WARN([Gnuplot was not found. svndigest will compile
268  without gnuplot but will throw an exception at run-time. Please
269  install gnuplot (available for a wide range of operating systems
270  at http://www.gnuplot.info).])
271  AC_MSG_NOTICE([])
272fi
273
274AC_MSG_NOTICE([Now type 'make ; make check'.])
Note: See TracBrowser for help on using the repository browser.