source: trunk/FACT++/configure.ac@ 10691

Last change on this file since 10691 was 10681, checked in by tbretz, 14 years ago
Output what AX_BOOST_BASE has detected; replaced my boost library names by the ones detecte3d by the AX_BOOST macros.
File size: 13.7 KB
Line 
1######################################################################
2# Autoconf initial setup
3######################################################################
4
5#[AC_]PACKAGE_NAME
6#[AC_]PACKAGE_TARNAME
7#[AC_]PACKAGE_VERSION
8#[AC_]PACKAGE_STRING
9#[AC_]PACKAGE_BUGREPORT
10AC_INIT([FACT++],[1.0],[thomas.bretz@epfl.ch],[FACTpp],[http://hello.example.com/])
11AC_PREREQ([2.65])
12AC_CONFIG_FILES([Makefile]) # causes x/Makefile.in to be created if x/Makefile.am exists
13#AC_CONFIG_HEADERS([config.h])
14AC_CONFIG_MACRO_DIR([.macro_dir])
15AC_CONFIG_AUX_DIR([.aux_dir])
16AC_PROG_CC([colorgcc gcc])
17 #If output variable CXXFLAGS was not already set, set it to -g -O2
18AC_PROG_CXX([colorgcc g++])
19LT_INIT([disable-static])
20AC_LANG(C++)
21#AC_PATH_XTRA
22
23######################################################################
24# Automake initial setup
25######################################################################
26
27AM_INIT_AUTOMAKE([1.11 -Wall subdir-objects std-options no-define color-tests parallel-tests silent-rules])
28AM_SILENT_RULES([yes])
29AM_PROG_CC_C_O
30
31######################################################################
32# DOXYGEN SUPPORT
33######################################################################
34
35### FIXME: Need a configure commandline switch
36DX_ENV_APPEND(EXTRACT_ALL, YES)
37DX_ENV_APPEND(RECURSIVE, YES)
38DX_ENV_APPEND(ALL_GRAPHS, NO) # change to yes to switch on call(er) graphs
39
40#DX_DOXYGEN_FEATURE(ON)
41#DX_DOT_FEATURE(ON) # sets HAVE_DOT
42#DX_HTML_FEATURE(ON) # sets GENERATE_HTML (default)
43#DX_CHM_FEATURE(ON|OFF) # sets GENERATE_HTMLHELP
44#DX_CHI_FEATURE(ON|OFF) # sets GENERATE_CHI
45#DX_MAN_FEATURE(ON) # sets GENERATE_MAN (segfaults)
46#DX_RTF_FEATURE(ON|OFF) # sets GENERATE_RTF
47#DX_XML_FEATURE(ON|OFF) # sets GENERATE_XML
48#DX_PDF_FEATURE(ON|OFF) # sets GENERATE_PDF (default)
49DX_PS_FEATURE(OFF) # sets GENERATE_PS (default)
50DX_INIT_DOXYGEN($PACKAGE_NAME)#, DOXYFILE-PATH, [OUTPUT-DIR])
51
52#USE_HTAGS = $(USE_HTAGS)
53
54######################################################################
55# pthread/Readline/NCurses (pthread needed by dim and boost)
56######################################################################
57
58AC_LANG_PUSH(C)
59
60# Check for math library (some linux need this to compile cfitsio)
61AC_CHECK_LIB([m],[cos])
62
63# Needed to compile dim
64ACX_PTHREAD
65
66CPPFLAGS+=" "$PTHREAD_CFLAGS" "
67LDFLAGS+=" "$PTHREAD_CFLAGS" "
68
69
70# Needed to compile FACT++
71AC_CHECK_READLINE
72
73if test "x$have_readline" != "xyes"; then
74 AC_MSG_ERROR([The readline library is not properly installed.])
75fi
76
77CPPFLAGS+=" "$READLINE_INCLUDES" "
78LDFLAGS+=" "$READLINE_LIBS" "
79
80# Needed to compile FACT++
81AC_CHECK_HEADERS([panel.h],,
82 AC_MSG_ERROR([ncurses header not found]))
83
84# Needed to compile FACT++
85AC_CHECK_LIB(panel, update_panels,,
86 AC_MSG_ERROR([ncurses panel library not found]))
87
88# Xm.h (lesstif/motif, needed to compile did)
89AC_FIND_MOTIF
90
91CPPFLAGS+=" "$MOTIF_INCL" "
92LDFLAGS+=" "$MOTIF_LDFLAGS" "
93
94AM_COND_IF(HAS_LIBXP,,
95 AC_MSG_WARN([ Motif/lesstif not found!])
96)
97
98# Needed to compile FACT++
99AC_CHECK_PACKAGE(cfitsio, ffpss, cfitsio, fitsio.h,,
100 AC_MSG_ERROR([cfitsio not properly installed/not found.]))
101
102#AC_CHECK_HEADERS([fitsio.h],,AC_MSG_ERROR([cfitsio headers not found]))
103#AC_CHECK_LIB([cfitsio], main,,AC_MSG_ERROR([cfitsio library not found]))
104
105AC_LANG_POP
106
107# Needed to compile FACT++
108AC_CHECK_PACKAGE(ccfits, main, CCfits, CCfits/CCfits,,
109 AC_MSG_ERROR([CCfits not properly installed/not found.]))
110
111#AC_CHECK_HEADERS([CCfits/CCfits],,
112# AC_MSG_ERROR(CCfits headers not found))
113#AC_CHECK_LIB(CCfits, main,,
114# AC_MSG_ERROR(CCfits library not found))
115
116######################################################################
117# MySQL(++) SUPPORT
118######################################################################
119
120# Needed to compile FACT++
121MYSQL_DEVEL
122MYSQLPP_DEVEL
123
124LDFLAGS+=" -lmysqlpp "
125
126######################################################################
127# BOOST SUPPORT
128######################################################################
129
130# Needed to compile FACT++
131AX_BOOST_BASE([1.40], [],
132 AC_MSG_ERROR([The boost C++ libraries (>=1.40) are not properly installed.])
133)
134
135AC_MSG_CHECKING([for BOOST_CPPFLAGS])
136AC_MSG_RESULT([$BOOST_CPPFLAGS])
137
138AC_MSG_CHECKING([for BOOST_LDFLAGS])
139AC_MSG_RESULT([$BOOST_LDFLAGS])
140
141# Keep this order AX_BOOST_FILESYSTEM needs AX_BOOST_SYSTEM_LIB
142AX_BOOST_SYSTEM
143AX_BOOST_ASIO
144AX_BOOST_DATE_TIME
145AX_BOOST_FILESYSTEM
146AX_BOOST_PROGRAM_OPTIONS
147AX_BOOST_REGEX
148AX_BOOST_THREAD
149#AX_BOOST_IOSTREAMS
150#AX_BOOST_PYTHON
151#AX_BOOST_SERIALIZATION
152#AX_BOOST_SIGNALS
153#AX_BOOST_TEST_EXEC_MONITOR
154#AX_BOOST_UNIT_TEST_FRAMEWORK
155#AX_BOOST_WAVE
156#AX_BOOST_WSERIALIZATION
157
158LDFLAGS+=" "$BOOST_LDFLAGS
159LDFLAGS+=" "$BOOST_SYSTEM_LIB
160LDFLAGS+=" "$BOOST_ASIO_LIB
161LDFLAGS+=" "$BOOST_DATE_TIME_LIB
162LDFLAGS+=" "$BOOST_FILESYSTEM_LIB
163LDFLAGS+=" "$BOOST_PROGRAM_OPTIONS_LIB
164LDFLAGS+=" "$BOOST_REGEX_LIB
165LDFLAGS+=" "$BOOST_THREAD_LIB" "
166
167CPPFLAGS+=" "$BOOST_CPPFLAGS" "
168
169#AC_CHECK_HEADERS(
170# [\
171# boost/bind.hpp \
172# boost/lexical_cast.hpp \
173# boost/filesystem.hpp \
174# boost/thread.hpp \
175# boost/function.hpp \
176# boost/regex.hpp \
177# boost/asio.hpp \
178# boost/enable_shared_from_this.hpp \
179# boost/asio/deadline_timer.hpp \
180# boost/date_time/posix_time/posix_time.hpp \
181# boost/date_time/local_time/local_time.hpp \
182# boost/date_time/gregorian/gregorian.hpp
183# ], [],
184# [
185# echo "Error! At least one needed header of the boost C++ libararies is missing."
186# exit -1
187# ]
188#)
189
190######################################################################
191# QT4/GUI SUPPORT
192######################################################################
193
194AC_ARG_WITH([qt4],
195 [AS_HELP_STRING([--without-qt4], [Disable qt4, i.e. disable gui support.])],
196 [], [QT4_DO_IT_ALL])
197
198######################################################################
199# ROOT SUPPORT
200######################################################################
201
202AC_ARG_WITH([root],
203 [AS_HELP_STRING([--without-root], [Disable root, i.e. disable gui support.])],
204 [], [ROOT_PATH([5.12/00])]
205)
206
207if test "$ROOTEXEC" != no ;
208then
209
210 ROOTCPPFLAGS=$ROOTCFLAGS" "$ROOTAUXCFLAGS
211 ROOTLDFLAGS="-L"$ROOTLIBDIR" -lGQt "
212
213 #AC_CHECK_PROG(HAVE_ROOT_QT, libGQt.so.$ROOTSOVERSION, yes, no, $ROOTLIBDIR)
214 #AC_CHECK_PROG(HAVE_GQT, libGQt.so.$ROOTSOVERSION, yes, no, $LD_LIBRARY_PATH)
215
216 # It seems it dooesn't work on older root versions
217 ROOT_FEATURE([qt], [HAVE_ROOT_QT=yes])
218
219 AC_SUBST(ROOTCPPFLAGS)
220 AC_SUBST(ROOTLDFLAGS)
221
222fi
223
224
225######################################################################
226# Check if we have colordiff to colorize 'svn diff'
227######################################################################
228
229# Nice to have to support colored diff
230AC_CHECK_PROG(COLORDIFF, colordiff, colordiff, cat)
231AC_CHECK_PROG(GROFF, groff, yes, no)
232AC_CHECK_PROG(PS2PDF, ps2pdf, yes, no)
233AC_CHECK_PROG(HELP2MAN, help2man, yes, no)
234
235##########################################################################
236# debug compilation support
237##########################################################################
238#
239#AC_MSG_CHECKING([whether to build with debug information])
240#AC_ARG_ENABLE([debug],
241# [AS_HELP_STRING([--enable-debug],
242# [enable debug data generation (def=no)])],
243# [debugit="$enableval"],
244# [debugit=no])
245#AC_MSG_RESULT([$debugit])
246#
247#if test x"$debugit" = x"yes"; then
248# AC_DEFINE([DEBUG],[],[Debug Mode])
249# AM_CXXFLAGS="$AM_CXXFLAGS -g -Wall -Werror -Wno-uninitialized -O0"
250#else
251# AC_DEFINE([NDEBUG],[],[No-debug Mode])
252# AM_CXXFLAGS="$AM_CXXFLAGS -O3"
253#fi
254#
255
256##########################################################################
257# produce conditionals for Makefile.am and for summary
258##########################################################################
259
260AM_CONDITIONAL(HAS_COLORDIFF, [test "$COLORDIFF" = colordiff])
261AM_CONDITIONAL(HAS_GROFF, [test "$GROFF" = yes])
262AM_CONDITIONAL(HAS_PS2PDF, [test "$PS2PDF" = yes])
263AM_CONDITIONAL(HAS_HELP2MAN, [test "$HELP2MAN" = yes])
264AM_CONDITIONAL(HAS_DOXYGEN, [test -n "$DX_DOXYGEN"])
265AM_CONDITIONAL(HAS_DOT, [test -n "$DX_DOT"])
266AM_CONDITIONAL(HAS_COLORGCC, [test "$GCC" = colorgcc])
267AM_CONDITIONAL(HAS_QT4, [test -n "$QT4_VERSION"])
268AM_CONDITIONAL(HAS_ROOT, [test "$ROOTEXEC" != no])
269AM_CONDITIONAL(HAS_ROOT_QT, [test "$HAVE_ROOT_QT" = yes])
270AM_CONDITIONAL(HAS_GUI, [test "$QT4_VERSION" -a "$HAVE_ROOT_QT" = yes])
271
272AM_CONDITIONAL(IS_FALSE, [test "x" = "y"])
273AM_CONDITIONAL(IS_TRUE, [test "x" = "x"])
274
275##########################################################################
276# print summary
277##########################################################################
278
279AC_OUTPUT
280
281AC_MSG_NOTICE()
282AC_MSG_NOTICE(============================== summary =============================)
283AC_MSG_NOTICE()
284AC_MSG_NOTICE([ CPPFLAGS = $CPPFLAGS])
285AC_MSG_NOTICE()
286AC_MSG_NOTICE([ LDFLAGS = $LDFLAGS])
287AC_MSG_NOTICE()
288AC_MSG_NOTICE(--------------------------------------------------------------------)
289AC_MSG_NOTICE()
290AC_MSG_NOTICE([ BOOST_CPPFLAGS = $BOOST_CPPFLAGS])
291AC_MSG_NOTICE([ BOOST_LDFLAGS = $BOOST_LDFLAGS])
292AC_MSG_NOTICE()
293AM_COND_IF(HAS_QT4, [
294 AC_MSG_NOTICE(--------------------------------------------------------------------)
295 AC_MSG_NOTICE()
296 AC_MSG_NOTICE([ QT4_VERSION = $QT4_VERSION])
297 AC_MSG_NOTICE()
298 AC_MSG_NOTICE([ QT4_LIB = $QT4_LIB])
299 AC_MSG_NOTICE([ QT4_LDFLAGS = $QT4_LDFLAGS])
300 AC_MSG_NOTICE([ QT4_INCLUDES = $QT4_INCLUDES])
301 AC_MSG_NOTICE()
302 AC_MSG_NOTICE([ MOC4 = $MOC4])
303 AC_MSG_NOTICE([ UIC4 = $UIC4])
304 AC_MSG_NOTICE([ RCC4 = $RCC4])
305 AC_MSG_NOTICE()
306],[])
307AM_COND_IF(HAS_ROOT, [
308 AC_MSG_NOTICE(--------------------------------------------------------------------)
309 AC_MSG_NOTICE()
310 AC_MSG_NOTICE([ ROOTVERSION = $ROOTVERSION])
311 AC_MSG_NOTICE()
312 AC_MSG_NOTICE([ ROOTEXEC = $ROOTEXEC])
313 AC_MSG_NOTICE([ ROOTCONF = $ROOTCONF])
314 AC_MSG_NOTICE([ ROOTCINT = $ROOTCINT])
315 AC_MSG_NOTICE([ ROOTCPPFLAGS = $ROOTCPPFLAGS])
316 AC_MSG_NOTICE([ ROOTLDFLAGS = $ROOTLDFLAGS])
317 AC_MSG_NOTICE()
318],[])
319AC_MSG_NOTICE(--------------------------------------------------------------------)
320AC_MSG_NOTICE()
321AM_COND_IF(HAS_LIBXP,
322 AC_MSG_NOTICE([ Motif/lesstif / 'Xm/Xm.h' 'libXp' found: yes]),
323 AC_MSG_NOTICE([ Motif/lesstif / 'Xm/Xm.h' 'libXp' found: no])
324)
325AM_COND_IF(HAS_COLORDIFF,
326 AC_MSG_NOTICE([ colored svn diff / 'colordiff' found: yes]),
327 AC_MSG_NOTICE([ colored svn diff / 'colordiff' found: no])
328)
329AM_COND_IF(HAS_HELP2MAN,[
330 AC_MSG_NOTICE([ man-pages enabled / 'help2man' found: $HELP2MAN])
331 AM_COND_IF(HAS_GROFF,
332 AC_MSG_NOTICE([ build of html enabled / 'groff' found: yes])
333 AC_MSG_NOTICE([ build of pdf enabled / 'ps2pdf' found: $PS2PDF]),
334 AC_MSG_NOTICE([ build of html and pdf / 'groff' found: no])
335 )
336],[
337 AC_MSG_NOTICE([ man, html, pdf enabled / 'help2man' found: no])
338])
339
340AM_COND_IF(HAS_DOXYGEN,
341 AC_MSG_NOTICE([ doxygen docu enabled / 'doxygen' found: $DX_DOXYGEN]),
342 AC_MSG_NOTICE([ doxygen docu enabled / 'doxygen' found: no])
343)
344AM_COND_IF(HAS_DOT,
345 AC_MSG_NOTICE([ doxygen graphs enabled / 'dot' (graphviz) found: $DX_DOT]),
346 AC_MSG_NOTICE([ doxygen graphs enabled / 'dot' (graphviz) found: no])
347)
348AM_COND_IF(HAS_QT4,
349 AC_MSG_NOTICE([ QT4 support enabled / QT4 toolkit found: yes]),
350 AC_MSG_NOTICE([ QT4 support enabled / QT4 toolkit found: no])
351)
352AC_MSG_NOTICE([ ROOT support enabled / root >= 5.12/00 found: $ROOTEXEC])
353AM_COND_IF(HAS_ROOT_QT,
354 AC_MSG_NOTICE([ ROOT built with --with-qt found: yes]),
355 AC_MSG_NOTICE([ ROOT built with --with-qt found: no])
356)
357AC_MSG_NOTICE()
358AC_MSG_NOTICE(--------------------------------------------------------------------)
359AC_MSG_NOTICE()
360AC_MSG_NOTICE([Suggestions and hints:])
361AC_MSG_NOTICE()
362AC_MSG_NOTICE([ - Add 'V=1' to you make-call to switch on verbose output.])
363AC_MSG_NOTICE([ - Do not try to create man-pages with doxygen,])
364AC_MSG_NOTICE([ it does most probably not work.])
365AM_COND_IF(HAS_COLORGCC,,
366 AC_MSG_NOTICE([ - Install colorgcc to get colored compiler output.])
367)
368AC_MSG_NOTICE([ - If you send me a bug report about:])
369AC_MSG_NOTICE([ + configure: please attach the file config.log])
370AC_MSG_NOTICE([ + make: please send me the output of 'make V=1'])
371AC_MSG_NOTICE()
372AC_MSG_NOTICE(--------------------------------------------------------------------)
373AC_MSG_NOTICE()
374AC_MSG_NOTICE([Some interesting build targets:])
375AC_MSG_NOTICE()
376AC_MSG_NOTICE([ diff: colored 'svn diff' if colordiff is installed])
377AM_COND_IF(HAS_HELP2MAN,[
378 AC_MSG_NOTICE([ program.man: build man-page from 'program --help'])
379 AC_MSG_NOTICE([ (display with 'man ./program.man')])
380 AM_COND_IF(HAS_GROFF,[
381 AC_MSG_NOTICE([ program.html: build html page from man-page])
382 AM_COND_IF(HAS_PS2PDF,
383 AC_MSG_NOTICE([ program.pdf: build pdf documentation from man page])
384 )
385 ])
386])
387AM_COND_IF(HAS_DOXYGEN,
388 AC_MSG_NOTICE([ doxygen-run: build html documentation with doxygen])
389 AC_MSG_NOTICE([ doxygen-doc: build html and pdf documentation with doxygen])
390)
391AC_MSG_NOTICE([ man: build all buildable documentation])
392AC_MSG_NOTICE()
393AC_MSG_NOTICE(--------------------------------------------------------------------)
394AC_MSG_NOTICE()
395AM_COND_IF(HAS_LIBXP,,
396 AC_MSG_WARN([ Motif/lesstif not found. The dim gui did will not be built!])
397)
398AM_COND_IF(HAS_ROOT,
399 [AM_COND_IF(HAS_ROOT_QT,,
400 AC_MSG_WARN([ root found but it was built without the --with-qt option])
401 )]
402)
403AM_COND_IF(HAS_GUI, [],
404 AC_MSG_WARN([ Either QT4 or qt-root is missing: GUI disabled!])
405)
406AC_MSG_NOTICE()
Note: See TracBrowser for help on using the repository browser.