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

Last change on this file since 13835 was 13776, checked in by tbretz, 12 years ago
Added smartfact and a check for the nova-library.
File size: 19.8 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://fact.isdc.unige.ch/svn/trunk/FACT++/])
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])
16
17# Make sure none of the following will set -O2
18AC_ARG_ENABLE([optimization],
19 AS_HELP_STRING([--disable-optimization], [Compile with -O0 instead of -O3])
20)
21AS_IF([test "x$enable_optimization" != "xno"], [MYFLAGS+=" -O3"], [MYFLAGS+=" -O0"])
22
23AC_ARG_ENABLE([debug],
24 AS_HELP_STRING([--enable-debug], [Compile with debugging symbols (-g)])
25)
26AS_IF([test "x$enable_debug" = "xyes"], [MYFLAGS+=" -g"])
27
28CFLAGS+=$MYFLAGS
29CXXFLAGS+=$MYFLAGS
30
31AC_PROG_CC([gcc])
32AC_PROG_CXX([g++])
33
34COLORGCC=`which colorgcc`
35AS_IF([test -n "$COLORGCC"], [
36 AC_CONFIG_LINKS([g++:$COLORGCC gcc:$COLORGCC])
37 PATH=./:$PATH
38])
39
40#AC_PROG_CC_C99
41AC_PROG_CC_STDC
42
43######################################################################
44# GNUC extension support (needed for the event builder)
45######################################################################
46
47AC_USE_SYSTEM_EXTENSIONS(_GNU_SOURCE)
48
49######################################################################
50# Check for right C++ standard
51######################################################################
52
53#AC_CXX_HEADER_STDCXX_0X
54AC_CXX_COMPILE_STDCXX_0X
55AS_IF([test "$ax_cv_cxx_compile_cxx0x_cxx" != yes],
56 AC_MSG_ERROR([C++0x standard (-std=c++0x) not supported by compiler.]))
57
58# Postponed after the BOOST library tests otherwise the check for boost::thread fails
59#CXXFLAGS+=" -std=c++0x"
60
61######################################################################
62# Setup the libtool and the language
63######################################################################
64
65LT_INIT([disable-static])
66AC_LANG(C++)
67#AC_PATH_XTRA
68
69######################################################################
70# Automake initial setup
71######################################################################
72AM_INIT_AUTOMAKE([1.11 -Wall subdir-objects std-options no-define color-tests parallel-tests silent-rules])
73AM_SILENT_RULES([yes])
74
75AM_PROG_CC_C_O
76
77######################################################################
78# DOXYGEN SUPPORT
79######################################################################
80
81### FIXME: Need a configure commandline switch
82DX_ENV_APPEND(EXTRACT_ALL, YES)
83DX_ENV_APPEND(RECURSIVE, YES)
84DX_ENV_APPEND(ALL_GRAPHS, NO) # change to yes to switch on call(er) graphs
85
86#DX_DOXYGEN_FEATURE(ON)
87DX_DOT_FEATURE(ON) # sets HAVE_DOT
88#DX_HTML_FEATURE(ON) # sets GENERATE_HTML (default)
89#DX_CHM_FEATURE(ON|OFF) # sets GENERATE_HTMLHELP
90#DX_CHI_FEATURE(ON|OFF) # sets GENERATE_CHI
91#DX_MAN_FEATURE(ON) # sets GENERATE_MAN (segfaults)
92#DX_RTF_FEATURE(ON|OFF) # sets GENERATE_RTF
93#DX_XML_FEATURE(ON|OFF) # sets GENERATE_XML
94#DX_PDF_FEATURE(ON|OFF) # sets GENERATE_PDF (default)
95DX_PS_FEATURE(OFF) # sets GENERATE_PS (default)
96DX_INIT_DOXYGEN($PACKAGE_NAME)#, DOXYFILE-PATH, [OUTPUT-DIR])
97
98#USE_HTAGS = $(USE_HTAGS)
99
100######################################################################
101# pthread/Readline/NCurses (pthread needed by dim and boost)
102######################################################################
103
104AC_LANG_PUSH(C)
105
106# Check for math library (some linux need this to compile cfitsio)
107AC_CHECK_LIB([m],[cos])
108
109# Needed to compile dim
110ACX_PTHREAD
111
112CPPFLAGS+=" "$PTHREAD_CFLAGS
113LDFLAGS+=" "$PTHREAD_CFLAGS
114
115
116# Needed to compile FACT++
117AC_CHECK_READLINE
118AS_IF([test "x$have_readline" != "xyes"],
119 AC_MSG_ERROR([The readline library is not properly installed.]))
120
121CPPFLAGS+=" "$READLINE_INCLUDES
122LDFLAGS+=" "$READLINE_LIBS
123
124# Needed to compile FACT++
125AC_CHECK_HEADERS([panel.h],,
126 AC_MSG_ERROR([ncurses header not found]))
127
128# Needed to compile FACT++
129AC_CHECK_LIB(panel, update_panels,,
130 AC_MSG_ERROR([ncurses panel library not found]))
131
132# Xm.h (lesstif/motif, needed to compile did)
133AC_FIND_MOTIF
134
135CPPFLAGS+=" "$MOTIF_INCL
136LDFLAGS+=" "$MOTIF_LDFLAGS
137
138AM_COND_IF(HAS_LIBXP,,
139 AC_MSG_WARN([ Motif/lesstif not found!])
140)
141
142# Check for zlib and exit with error if not found (defines HAVE_LIBZ)
143AC_CHECK_PACKAGE(zlib, inflateEnd, z, zlib.h,
144 HAVE_ZLIB=yes, HAVE_ZLIB=no)
145
146# Check for GL and GLU needed for the raw event viewer
147AC_CHECK_PACKAGE(GL, glLoadIdentity, GL, GL/gl.h, HAVE_GL=yes, HAVE_GL=no)
148AC_CHECK_PACKAGE(GLU, gluNewTess, GLU, GL/glu.h, HAVE_GLU=yes, HAVE_GLU=no)
149
150# Check for libnova
151AC_CHECK_PACKAGE(nova, ln_get_julian_from_sys, nova, libnova/julian_day.h, HAVE_NOVA=yes, HAVE_NOVA=no)
152
153# Taken from http://code.google.com/p/autoconf-gl-macros/
154#AX_CHECK_GL
155#AX_CHECK_GLU
156#AX_CHECK_GLUT
157
158# Check for the fits header and zstream support from MARS
159#AC_CHECK_FILE(gui/RawEventsViewer/izstream.h,
160# HAVE_IZSTREAM_H=yes, HAVE_IZSTREAM_H=no)
161#AC_CHECK_FILE(gui/RawEventsViewer/fits.h,
162# HAVE_FITS_H=yes, HAVE_FITS_H=no)
163
164# Needed to compile FACT++
165AC_CHECK_PACKAGE(cfitsio, ffpss, cfitsio, fitsio.h,
166 HAVE_CFITSIO=yes, HAVE_CFITSIO=no)
167
168#AC_CHECK_HEADERS([fitsio.h],,AC_MSG_ERROR([cfitsio headers not found]))
169#AC_CHECK_LIB([cfitsio], main,,AC_MSG_ERROR([cfitsio library not found]))
170
171AC_LANG_POP(C)
172
173# Needed to compile FACT++
174AC_CHECK_PACKAGE(ccfits, main, CCfits, CCfits/CCfits,
175 HAVE_CCFITS=yes, HAVE_CCFITS=no)
176
177#AC_CHECK_HEADERS([CCfits/CCfits],,
178# AC_MSG_ERROR(CCfits headers not found))
179#AC_CHECK_LIB(CCfits, main,,
180# AC_MSG_ERROR(CCfits library not found))
181
182######################################################################
183# MySQL(++) SUPPORT
184######################################################################
185
186# Needed to compile FACT++
187MYSQL_DEVEL
188MYSQLPP_DEVEL
189
190LDFLAGS+=" -lmysqlpp"
191
192######################################################################
193# BOOST SUPPORT
194######################################################################
195
196# Needed to compile FACT++
197AX_BOOST_BASE([1.40], [],
198 AC_MSG_ERROR([The boost C++ libraries (>=1.40) are not properly installed.])
199)
200
201AC_MSG_CHECKING([for BOOST_CPPFLAGS])
202AC_MSG_RESULT([$BOOST_CPPFLAGS])
203
204AC_MSG_CHECKING([for BOOST_LDFLAGS])
205AC_MSG_RESULT([$BOOST_LDFLAGS])
206
207# Keep this order AX_BOOST_FILESYSTEM needs AX_BOOST_SYSTEM_LIB
208AX_BOOST_SYSTEM
209AS_IF([test "x$ax_cv_boost_system" != "xyes"],
210 AC_MSG_ERROR([Problems with the Boost::System libarary.]))
211
212AX_BOOST_ASIO
213AS_IF([test "x$ax_cv_boost_asio" != "xyes"],
214 AC_MSG_ERROR([Problems with the Boost::ASIO libarary.]))
215
216AX_BOOST_DATE_TIME
217AS_IF([test "x$ax_cv_boost_date_time" != "xyes"],
218 AC_MSG_ERROR([Problems with the Boost::Date_Time libarary.]))
219
220AX_BOOST_FILESYSTEM
221AS_IF([test "x$ax_cv_boost_filesystem" != "xyes"],
222 AC_MSG_ERROR([Problems with the Boost::Filesystem libarary.]))
223
224AX_BOOST_PROGRAM_OPTIONS
225AS_IF([test "x$ax_cv_boost_program_options" != "xyes"],
226 AC_MSG_ERROR([Problems with the Boost::Program_Options libarary.]))
227
228AX_BOOST_REGEX
229AS_IF([test "x$ax_cv_boost_regex" != "xyes"],
230 AC_MSG_ERROR([Problems with the Boost::Regex libarary.]))
231
232AX_BOOST_THREAD
233AS_IF([test "x$ax_cv_boost_thread" != "xyes"],
234 AC_MSG_ERROR([Problems with the Boost::Thread libarary.]))
235#AX_BOOST_IOSTREAMS
236#AX_BOOST_PYTHON
237#AX_BOOST_SERIALIZATION
238#AX_BOOST_SIGNALS
239#AX_BOOST_TEST_EXEC_MONITOR
240#AX_BOOST_UNIT_TEST_FRAMEWORK
241#AX_BOOST_WAVE
242#AX_BOOST_WSERIALIZATION
243
244LDFLAGS+=" "$BOOST_LDFLAGS
245LDFLAGS+=" "$BOOST_SYSTEM_LIB
246LDFLAGS+=" "$BOOST_ASIO_LIB
247LDFLAGS+=" "$BOOST_DATE_TIME_LIB
248LDFLAGS+=" "$BOOST_FILESYSTEM_LIB
249LDFLAGS+=" "$BOOST_PROGRAM_OPTIONS_LIB
250LDFLAGS+=" "$BOOST_REGEX_LIB
251LDFLAGS+=" "$BOOST_THREAD_LIB
252
253CPPFLAGS+=" "$BOOST_CPPFLAGS
254
255# Now we can safely add the compiler option for your prefered standard
256CXXFLAGS+=" -std=c++0x"
257
258#AC_CHECK_HEADERS(
259# [\
260# boost/bind.hpp \
261# boost/lexical_cast.hpp \
262# boost/filesystem.hpp \
263# boost/thread.hpp \
264# boost/function.hpp \
265# boost/regex.hpp \
266# boost/asio.hpp \
267# boost/enable_shared_from_this.hpp \
268# boost/asio/deadline_timer.hpp \
269# boost/date_time/posix_time/posix_time.hpp \
270# boost/date_time/local_time/local_time.hpp \
271# boost/date_time/gregorian/gregorian.hpp
272# ], [],
273# [
274# echo "Error! At least one needed header of the boost C++ libararies is missing."
275# exit -1
276# ]
277#)
278
279######################################################################
280# QT4/GUI SUPPORT
281######################################################################
282
283AC_ARG_WITH([qt4],
284 [AS_HELP_STRING([--without-qt4], [Disable qt4, i.e. disable gui support.])],
285 [], [QT4_DO_IT_ALL])
286
287# This allows to list the QT4 stuff independantly later
288CPPFLAGS+=" "${QT4_INCLUDES}" "
289AC_CHECK_CLASS(QGL, [QGLWidget qgl], QtOpenGL, QtOpenGL/QGLWidget,
290 HAVE_QGL=yes, HAVE_QGL=no)
291AC_CHECK_CLASS(qwt, [QwtPlot qwt], qwt-qt4, qwt_plot.h,
292 HAVE_QWT=yes, HAVE_QWT=no)
293
294######################################################################
295# ROOT SUPPORT
296######################################################################
297
298AC_ARG_WITH([root],
299 [AS_HELP_STRING([--without-root], [Disable root, i.e. disable gui support.])],
300 [], [ROOT_PATH([5.12/00])]
301)
302
303if [test "$ROOTEXEC" != no -a -n "$ROOTVERSION"] ;
304then
305
306 ROOTCPPFLAGS=$ROOTCFLAGS" "$ROOTAUXCFLAGS
307 ROOTLDFLAGS="-L"$ROOTLIBDIR" -lGQt"
308
309 #AC_CHECK_PROG(HAVE_ROOT_QT, libGQt.so.$ROOTSOVERSION, yes, no, $ROOTLIBDIR)
310 #AC_CHECK_PROG(HAVE_GQT, libGQt.so.$ROOTSOVERSION, yes, no, $LD_LIBRARY_PATH)
311
312 # It seems it dooesn't work on older root versions
313 ROOT_FEATURE([qt], [HAVE_ROOT_QT=yes])
314
315 AC_SUBST(ROOTCPPFLAGS)
316 AC_SUBST(ROOTLDFLAGS)
317fi
318
319
320######################################################################
321# Check if we have colordiff to colorize 'svn diff'
322######################################################################
323
324# Nice to have to support colored diff
325AC_CHECK_PROG(COLORDIFF, colordiff, colordiff, cat)
326AC_CHECK_PROG(GROFF, groff, yes, no)
327AC_CHECK_PROG(PS2PDF, ps2pdf, yes, no)
328AC_CHECK_PROG(HELP2MAN, help2man, yes, no)
329
330##########################################################################
331# debug compilation support
332##########################################################################
333#
334#AC_MSG_CHECKING([whether to build with debug information])
335#AC_ARG_ENABLE([debug],
336# [AS_HELP_STRING([--enable-debug],
337# [enable debug data generation (def=no)])],
338# [debugit="$enableval"],
339# [debugit=no])
340#AC_MSG_RESULT([$debugit])
341#
342#if test x"$debugit" = x"yes"; then
343# AC_DEFINE([DEBUG],[],[Debug Mode])
344# AM_CXXFLAGS="$AM_CXXFLAGS -g -Wall -Werror -Wno-uninitialized -O0"
345#else
346# AC_DEFINE([NDEBUG],[],[No-debug Mode])
347# AM_CXXFLAGS="$AM_CXXFLAGS -O3"
348#fi
349#
350
351##########################################################################
352# produce conditionals for Makefile.am and for summary
353##########################################################################
354
355AM_CONDITIONAL(HAS_COLORDIFF, [test "$COLORDIFF" = colordiff])
356AM_CONDITIONAL(HAS_GROFF, [test "$GROFF" = yes])
357AM_CONDITIONAL(HAS_PS2PDF, [test "$PS2PDF" = yes])
358AM_CONDITIONAL(HAS_HELP2MAN, [test "$HELP2MAN" = yes])
359AM_CONDITIONAL(HAS_DOXYGEN, [test -n "$DX_DOXYGEN"])
360AM_CONDITIONAL(HAS_DOT, [test -n "$DX_DOT"])
361AM_CONDITIONAL(HAS_COLORGCC, [test "$COLORGCC"])
362AM_CONDITIONAL(HAS_QT4, [test -n "$QT4_VERSION"])
363AM_CONDITIONAL(HAS_ROOT, [test "$ROOTEXEC" != no])
364AM_CONDITIONAL(HAS_ROOT_QT, [test "$HAVE_ROOT_QT" = yes])
365AM_CONDITIONAL(HAS_CFITSIO, [test "$HAVE_CFITSIO" = yes])
366AM_CONDITIONAL(HAS_CCFITS, [test "$HAVE_CCFITS" = yes])
367AM_CONDITIONAL(HAS_FITS, [test "$HAVE_CFITSIO" = yes -a "$HAVE_CCFITS" = yes])
368AM_CONDITIONAL(HAS_ZLIB, [test "$HAVE_ZLIB" = yes])
369#AM_CONDITIONAL(HAS_IZSTREAM_H,[test "$HAVE_IZSTREAM_H" = yes])
370#AM_CONDITIONAL(HAS_FITS_H, [test "$HAVE_FITS_H" = yes])
371AM_CONDITIONAL(HAS_GL, [test "$HAVE_GL" = yes])
372AM_CONDITIONAL(HAS_GLU, [test "$HAVE_GLU" = yes])
373AM_CONDITIONAL(HAS_QGL, [test "$HAVE_QGL" = yes])
374AM_CONDITIONAL(HAS_QWT, [test "$HAVE_QWT" = yes])
375AM_CONDITIONAL(HAS_NOVA, [test "$HAVE_NOVA" = yes])
376
377AM_CONDITIONAL(HAS_GUI, [test "$QT4_VERSION" -a "$HAVE_GL" = yes -a "$HAVE_GLU" = yes -a "$HAVE_QGL" = yes -a "$HAVE_ROOT_QT" = yes ])
378AM_CONDITIONAL(HAS_VIEWER, [test "$QT4_VERSION" -a "$HAVE_GL" = yes -a "$HAVE_GLU" = yes -a "$HAVE_QGL" = yes -a "$HAVE_QWT" = yes])
379
380AM_CONDITIONAL(IS_FALSE, [test "x" = "y"])
381AM_CONDITIONAL(IS_TRUE, [test "x" = "x"])
382
383AM_COND_IF(HAS_FITS, [AC_DEFINE(HAVE_FITS)], )
384AM_COND_IF(HAS_ROOT, [AC_DEFINE(HAVE_ROOT)], )
385AM_COND_IF(HAS_ZLIB, [AC_DEFINE(HAVE_ZLIB)], )
386AM_COND_IF(HAS_NOVA, [AC_DEFINE(HAVE_NOVA)], )
387
388#AM_COND_IF(HAS_FITS_H, [
389# AM_COND_IF(HAS_IZSTREAM_H, [
390# ])
391#],)
392
393
394##########################################################################
395# print summary
396##########################################################################
397
398AC_OUTPUT
399
400AC_MSG_NOTICE()
401AC_MSG_NOTICE(============================== summary =============================)
402AC_MSG_NOTICE()
403AC_MSG_NOTICE([ CFLAGS = $CFLAGS])
404AC_MSG_NOTICE()
405AC_MSG_NOTICE([ CXXFLAGS = $CXXFLAGS])
406AC_MSG_NOTICE()
407AC_MSG_NOTICE([ CPPFLAGS = $CPPFLAGS])
408AC_MSG_NOTICE()
409AC_MSG_NOTICE([ LDFLAGS = $LDFLAGS])
410AC_MSG_NOTICE()
411AC_MSG_NOTICE(--------------------------------------------------------------------)
412AC_MSG_NOTICE()
413AC_MSG_NOTICE([ BOOST_CPPFLAGS = $BOOST_CPPFLAGS])
414AC_MSG_NOTICE([ BOOST_LDFLAGS = $BOOST_LDFLAGS])
415AC_MSG_NOTICE()
416AM_COND_IF(HAS_QT4, [
417 AC_MSG_NOTICE(--------------------------------------------------------------------)
418 AC_MSG_NOTICE()
419 AC_MSG_NOTICE([ QT4_VERSION = $QT4_VERSION])
420 AC_MSG_NOTICE()
421 AC_MSG_NOTICE([ QT4_LIB = $QT4_LIB])
422 AC_MSG_NOTICE([ QT4_LDFLAGS = $QT4_LDFLAGS])
423 AC_MSG_NOTICE([ QT4_INCLUDES = $QT4_INCLUDES])
424 AC_MSG_NOTICE()
425 AC_MSG_NOTICE([ MOC4 = $MOC4])
426 AC_MSG_NOTICE([ UIC4 = $UIC4])
427 AC_MSG_NOTICE([ RCC4 = $RCC4])
428 AC_MSG_NOTICE()
429],[])
430AM_COND_IF(HAS_ROOT, [
431 AC_MSG_NOTICE(--------------------------------------------------------------------)
432 AC_MSG_NOTICE()
433 AC_MSG_NOTICE([ ROOTVERSION = $ROOTVERSION])
434 AC_MSG_NOTICE()
435 AC_MSG_NOTICE([ ROOTEXEC = $ROOTEXEC])
436 AC_MSG_NOTICE([ ROOTCONF = $ROOTCONF])
437 AC_MSG_NOTICE([ ROOTCINT = $ROOTCINT])
438 AC_MSG_NOTICE([ ROOTCPPFLAGS = $ROOTCPPFLAGS])
439 AC_MSG_NOTICE([ ROOTLDFLAGS = $ROOTLDFLAGS])
440 AC_MSG_NOTICE()
441],[])
442AC_MSG_NOTICE(--------------------------------------------------------------------)
443AC_MSG_NOTICE()
444AC_MSG_NOTICE([ zlib / 'zlib.h' found: $HAVE_ZLIB])
445AC_MSG_NOTICE([ nova / libnova.so found: $HAVE_NOVA])
446#AC_MSG_NOTICE([ gui/RawEventsViewer/izstream.h found: $HAVE_IZSTREAM_H])
447#AC_MSG_NOTICE([ gui/RawEventsViewer/fits.h found: $HAVE_FITS_H])
448AC_MSG_NOTICE([ GL / GL/gl.h found: $HAVE_GL])
449AC_MSG_NOTICE([ GLU / GL/glu.h found: $HAVE_GLU])
450AC_MSG_NOTICE([ QtOpenGL / QtOpenGL/QGLWidget found: $HAVE_QGL])
451AC_MSG_NOTICE([ Qwt / qwt_plot.h found: $HAVE_QWT])
452AC_MSG_NOTICE([ cfitsio / 'fitsio.h' found: $HAVE_CFITSIO])
453AC_MSG_NOTICE([ CCfits / 'CCfits/CCfits' found: $HAVE_CCFITS])
454AM_COND_IF(HAS_LIBXP,
455 AC_MSG_NOTICE([ Motif/lesstif / 'Xm/Xm.h' 'libXp' found: yes]),
456 AC_MSG_NOTICE([ Motif/lesstif / 'Xm/Xm.h' 'libXp' found: no])
457)
458
459AM_COND_IF(HAS_LIBXP,
460 AC_MSG_NOTICE([ Motif/lesstif / 'Xm/Xm.h' 'libXp' found: yes]),
461 AC_MSG_NOTICE([ Motif/lesstif / 'Xm/Xm.h' 'libXp' found: no])
462)
463AM_COND_IF(HAS_COLORDIFF,
464 AC_MSG_NOTICE([ colored svn diff / 'colordiff' found: yes]),
465 AC_MSG_NOTICE([ colored svn diff / 'colordiff' found: no])
466)
467AM_COND_IF(HAS_HELP2MAN,[
468 AC_MSG_NOTICE([ man-pages enabled / 'help2man' found: $HELP2MAN])
469 AM_COND_IF(HAS_GROFF,
470 AC_MSG_NOTICE([ build of html enabled / 'groff' found: yes])
471 AC_MSG_NOTICE([ build of pdf enabled / 'ps2pdf' found: $PS2PDF]),
472 AC_MSG_NOTICE([ build of html and pdf / 'groff' found: no])
473 )
474],[
475 AC_MSG_NOTICE([ man, html, pdf enabled / 'help2man' found: no])
476])
477
478AM_COND_IF(HAS_DOXYGEN,
479 AC_MSG_NOTICE([ doxygen docu enabled / 'doxygen' found: $DX_DOXYGEN]),
480 AC_MSG_NOTICE([ doxygen docu enabled / 'doxygen' found: no])
481)
482AM_COND_IF(HAS_DOT,
483 AC_MSG_NOTICE([ doxygen graphs enabled / 'dot' (graphviz) found: $DX_DOT]),
484 AC_MSG_NOTICE([ doxygen graphs enabled / 'dot' (graphviz) found: no])
485)
486AM_COND_IF(HAS_QT4,
487 AC_MSG_NOTICE([ QT4 support enabled / QT4 toolkit found: yes]),
488 AC_MSG_NOTICE([ QT4 support enabled / QT4 toolkit found: no])
489)
490AC_MSG_NOTICE([ ROOT support enabled / root >= 5.12/00 found: $ROOTEXEC])
491AM_COND_IF(HAS_ROOT_QT,
492 AC_MSG_NOTICE([ ROOT built with --with-qt found: yes]),
493 AC_MSG_NOTICE([ ROOT built with --with-qt found: no])
494)
495AC_MSG_NOTICE()
496AC_MSG_NOTICE(--------------------------------------------------------------------)
497AC_MSG_NOTICE()
498AC_MSG_NOTICE([Suggestions and hints:])
499AC_MSG_NOTICE()
500AC_MSG_NOTICE([ - Add 'V=1' to you make-call to switch on verbose output.])
501AC_MSG_NOTICE([ - Do not try to create man-pages with doxygen,])
502AC_MSG_NOTICE([ it does most probably not work.])
503AM_COND_IF(HAS_COLORGCC,,
504 AC_MSG_NOTICE([ - Install colorgcc to get colored compiler output.])
505)
506AC_MSG_NOTICE([ - If you send me a bug report about:])
507AC_MSG_NOTICE([ + configure: please attach the file config.log])
508AC_MSG_NOTICE([ + make: please send me the output of 'make V=1'])
509AC_MSG_NOTICE()
510AC_MSG_NOTICE(--------------------------------------------------------------------)
511AC_MSG_NOTICE()
512AC_MSG_NOTICE([Some interesting build targets:])
513AC_MSG_NOTICE()
514AC_MSG_NOTICE([ diff: colored 'svn diff' if colordiff is installed])
515AM_COND_IF(HAS_HELP2MAN,[
516 AC_MSG_NOTICE([ program.man: build man-page from 'program --help'])
517 AC_MSG_NOTICE([ (display with 'man ./program.man')])
518 AM_COND_IF(HAS_GROFF,[
519 AC_MSG_NOTICE([ program.html: build html page from man-page])
520 AM_COND_IF(HAS_PS2PDF,
521 AC_MSG_NOTICE([ program.pdf: build pdf documentation from man page])
522 )
523 ])
524])
525AM_COND_IF(HAS_DOXYGEN,
526 AC_MSG_NOTICE([ doxygen-run: build html documentation with doxygen])
527 AC_MSG_NOTICE([ doxygen-doc: build html and pdf documentation with doxygen])
528)
529AC_MSG_NOTICE([ man: build all buildable documentation])
530AC_MSG_NOTICE()
531AC_MSG_NOTICE(--------------------------------------------------------------------)
532AC_MSG_NOTICE()
533AM_COND_IF(HAS_ZLIB,,
534 AC_MSG_WARN([ zlib not found. Support for reading .fits.gz disabled.])
535)
536AM_COND_IF(HAS_LIBXP,,
537 AC_MSG_WARN([ Motif/lesstif not found. The dim gui did will not be built!])
538)
539AM_COND_IF(HAS_FITS,,
540 AC_MSG_WARN([ FITS support disabled. cfitsio/CCfits missing!])
541)
542AM_COND_IF(HAS_ROOT,
543 [AM_COND_IF(HAS_ROOT_QT,,
544 AC_MSG_WARN([ root found but it was built without the --with-qt option])
545 )]
546)
547AM_COND_IF(HAS_QT4,, AC_MSG_WARN([ QT4 missing - GUIs disabled!]))
548AM_COND_IF(HAS_GL,, AC_MSG_WARN([ GL not found - GUIs will be disabled.]))
549AM_COND_IF(HAS_GLU,, AC_MSG_WARN([ GLU not found - GUIs will be disabled.]))
550AM_COND_IF(HAS_QGL,, AC_MSG_WARN([ QtOpenGl not found - GUIs will be disabled.]))
551AM_COND_IF(HAS_QWT,, AC_MSG_WARN([ Qwt not found - viewer will be disabled.]))
552AM_COND_IF(HAS_GUI, [],
553 AC_MSG_WARN([ Either of the necessary packages not found - fact GUI disabled!])
554)
555AM_COND_IF(HAS_VIEWER, [],
556 AC_MSG_WARN([ Either of the necessary packages not found - viewer GUI disabled!])
557)
558AC_MSG_NOTICE()
Note: See TracBrowser for help on using the repository browser.