source: trunk/configure.ac @ 954

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

Addresses #118.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.5 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id: configure.ac 954 2007-10-09 04:32:41Z jari $
4
5# Copyright (C) 2003 Daniel Dalevi, Jari Häkkinen
6# Copyright (C) 2004 Jari Häkkinen
7# Copyright (C) 2005, 2006, 2007 Jari Häkkinen, Peter Johansson
8#
9# This file is part of the yat library, http://trac.thep.lu.se/trac/yat
10#
11# The yat library is free software; you can redistribute it
12# and/or modify it under the terms of the GNU General Public License as
13# published by the Free Software Foundation; either version 2 of the
14# License, or (at your option) any later version.
15#
16# The yat library is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19# General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24# 02111-1307, USA.
25#
26# If you grabbed the source from the subversion repository you should,
27# at top-level, execute:
28#     ./bootstrap
29# To push subsequent changes of this file into the build scripts you
30# must issue:
31#     autoreconf
32
33AC_PREREQ(2.57)
34AC_INIT([yat],[0.4pre],[jari@thep.lu.se])
35AC_CONFIG_SRCDIR([yat/utility/matrix.h])
36AC_CONFIG_AUX_DIR([autotools])
37AC_PREFIX_DEFAULT([/usr/local])
38
39AM_CONFIG_HEADER([config.h])
40AM_INIT_AUTOMAKE()
41
42# Set default programming language
43AC_LANG(C++)
44
45# Checks for programs.
46AC_PROG_CXX
47AC_PROG_INSTALL
48AC_CHECK_PROG([DOXYGEN], [doxygen], [yes], [no])
49AC_CHECK_PROG([DVIPDFM], [dvipdfm], [yes], [no])
50AC_CHECK_PROG([LATEX], [latex], [yes], [no])
51AC_CHECK_PROG([LATEX2HTML], [latex2html], [yes], [no])
52
53# Checks for libraries.
54AC_CHECK_LIB(m,main)
55AC_SEARCH_LIBS(ATL_ctrsv,atlas,,
56  AC_SEARCH_LIBS(cblas_sdsdot,gslcblas))
57AC_CHECK_LIB(gsl,main)
58
59# GNU Scientific Library, GSL http://www.gnu.org/software/gsl/, checks
60# Including AM_PATH_GSL macro from gsl.m4 distributed by GSL
61sinclude(./build_support/gsl.m4)
62AM_PATH_GSL(1.6,,[AC_MSG_ERROR(could not find required version of GSL)])
63
64# Checks for header files.
65AC_CHECK_HEADERS([unistd.h])
66
67# Checks for typedefs, structures, and compiler characteristics.
68AC_HEADER_STDBOOL
69AC_C_CONST
70AC_C_INLINE
71AC_TYPE_SIZE_T
72
73# Checks for library functions.
74AC_PROG_LIBTOOL
75AC_FUNC_ERROR_AT_LINE
76AC_HEADER_STDC
77AC_CHECK_FUNCS([pow sqrt])
78
79CXXFLAGS="-Wall -pedantic"
80CPPFLAGS="-DHAVE_INLINE=1"
81AC_ARG_ENABLE(debug,
82  [AS_HELP_STRING([--enable-debug],[turn on debug options and code])])
83if test "${enable_debug}" = "yes" ; then
84  CXXFLAGS="$CXXFLAGS -g -O"
85  CPPFLAGS="$CPPFLAGS -DYAT_DEBUG=1"
86else
87  CXXFLAGS="$CXXFLAGS -O3"
88  CPPFLAGS="$CPPFLAGS -DNDEBUG -DGSL_RANGE_CHECK_OFF"
89fi
90CFLAGS="$CXXFLAGS"
91
92# check for quiet_NaN support in OS
93# At compile time, but this may not work if quiet_NaN exists and returns
94# an incorrect value
95AC_MSG_CHECKING([for std::numeric_limits<>::quiet_NaN()])
96AC_COMPILE_IFELSE(
97  [AC_LANG_PROGRAM(
98    [#include <limits>
99     extern void f(double);],
100    [f(std::numeric_limits<double>::quiet_NaN())])],
101  [quiet_nan=yes],
102  [quiet_nan=no])
103AC_MSG_RESULT($quiet_nan)
104if test "${quiet_nan}" = "no" ; then
105  AC_MSG_FAILURE([
106    Support for quiet NAN required.
107    Yat will not work on this system!])
108fi
109# At run-time, but this has the disadvantage that yat cannot be built 
110# for cross-compilation
111AC_MSG_CHECKING([if std::numeric_limits<>::has_quiet_NaN is true])
112AC_RUN_IFELSE(
113  [AC_LANG_PROGRAM(
114    [#include <limits>],
115    [return !std::numeric_limits<double>::has_quiet_NaN])],
116  [quiet_nan=yes],
117  [quiet_nan=no])
118AC_MSG_RESULT($quiet_nan)
119if test "${quiet_nan}" = "no" ; then
120  AC_MSG_FAILURE([
121    Support for quiet NAN required.
122    Yat will not work on this system!])
123fi
124
125# yat specific settings
126YAT_LIB="libyat.la"
127YAT_LIB_LOCATION="yat"
128AC_SUBST(YAT_LIB)
129AC_SUBST(YAT_LIB_LOCATION)
130
131AC_CONFIG_FILES([Makefile
132     doc/Makefile
133     test/Makefile
134     test/data/Makefile
135     yat/Makefile
136     yat/classifier/Makefile
137     yat/random/Makefile
138     yat/regression/Makefile
139     yat/statistics/Makefile
140     yat/utility/Makefile])
141
142AC_OUTPUT
143
144# Only warning about missing programs (needed for docs generation)
145# when in debug mode
146if (test "$enable_debug" == "yes"); then
147   if (test "$DOXYGEN" != "yes") ; then
148      AC_MSG_WARN([Doxygen was not found. Yat will compile and work
149  without doxygen.  However, in order to enable
150  generation of documentation, please install doxygen
151  available at http://www.doxygen.org/])
152   fi       
153   if (test "$LATEX" != "yes") ; then
154      AC_MSG_WARN([latex was not found. Yat will compile and work
155  without latex. However, supporting documentation on
156  statistics used in yat cannot be generated without
157  latex.])
158   fi       
159   if (test "$DVIPDFM" != "yes") ; then
160      AC_MSG_WARN([dvipdfm was not found. Yat will compile and work
161  without dvipdfm. However, pdf document on statistics
162  used in yat cannot be generated without dvipdfm.])
163   fi       
164   if (test "$LATEX2HTML" != "yes") ; then
165      AC_MSG_WARN([latex2html was not found. Yat will compile and work
166  without Latex. However, html document on statistics
167  used in yat cannot be generated without latex.])
168   fi       
169fi
170
171# Some more messages.
172AC_MSG_NOTICE([])
173AC_MSG_NOTICE([ Ready to compile the yat library])
174AC_MSG_NOTICE([ The following flags and libraries will be used:])
175AC_MSG_NOTICE([ +++++++++++++++++++++++++++++++++++++++++++++++])
176AC_MSG_NOTICE([  CPPFLAGS=\"$CPPFLAGS\"])
177AC_MSG_NOTICE([  CXXFLAGS=\"$CXXFLAGS\"])
178AC_MSG_NOTICE([  LIBS=\"$LIBS\"])
179AC_MSG_NOTICE([ +++++++++++++++++++++++++++++++++++++++++++++++])
180AC_MSG_NOTICE([])
181AC_MSG_NOTICE([ Now type 'make ; make check'.])
Note: See TracBrowser for help on using the repository browser.