source: trunk/configure.ac @ 943

Last change on this file since 943 was 943, checked in by Peter, 16 years ago

removing variables not needed and modified AM_INIT_AUTOMAKE to modern form

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.0 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id: configure.ac 943 2007-10-07 20:02:42Z peter $
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
30AC_PREREQ(2.57)
31AC_INIT([[yat]],[0.4pre],[jari@thep.lu.se])
32AC_CONFIG_SRCDIR([yat/utility/matrix.h])
33AC_CONFIG_AUX_DIR([autotools])
34AC_PREFIX_DEFAULT([/usr/local])
35
36AM_CONFIG_HEADER([config.h])
37AM_INIT_AUTOMAKE()
38
39# Checks for programs.
40AC_PROG_CXX
41AC_PROG_INSTALL
42
43# Checks for libraries.
44AC_CHECK_LIB(m,main)
45AC_SEARCH_LIBS(ATL_ctrsv,atlas,,
46  AC_SEARCH_LIBS(cblas_sdsdot,gslcblas))
47AC_CHECK_LIB(gsl,main)
48
49AM_PATH_GSL(1.6,,[AC_MSG_ERROR(could not find required version of GSL)])
50
51# Set default programming language
52AC_LANG(C++)
53
54# Checks for header files.
55AC_CHECK_HEADERS([unistd.h])
56
57# Checks for typedefs, structures, and compiler characteristics.
58AC_HEADER_STDBOOL
59AC_C_CONST
60AC_C_INLINE
61AC_TYPE_SIZE_T
62
63# Checks for library functions.
64AC_PROG_LIBTOOL
65AC_FUNC_ERROR_AT_LINE
66AC_HEADER_STDC
67AC_CHECK_FUNCS([pow sqrt])
68
69CXXFLAGS="-Wall -pedantic"
70CPPFLAGS="-DHAVE_INLINE=1"
71AC_ARG_ENABLE(debug,
72  [AS_HELP_STRING([--enable-debug],[turn on debug options and code])])
73if test "${enable_debug}" = "yes" ; then
74  CXXFLAGS="$CXXFLAGS -g -O"
75  CPPFLAGS="$CPPFLAGS -DYAT_DEBUG=1"
76else
77  CXXFLAGS="$CXXFLAGS -O3"
78  CPPFLAGS="$CPPFLAGS -DNDEBUG -DGSL_RANGE_CHECK_OFF"
79fi
80
81# check for quiet_NaN support in OS
82# At compile time, but this may not work if quiet_NaN exists and returns
83# an incorrect value
84AC_MSG_CHECKING([for std::numeric_limits<>::quiet_NaN()])
85AC_COMPILE_IFELSE(
86  [AC_LANG_PROGRAM(
87    [#include <limits>
88     extern void f(double);],
89    [f(std::numeric_limits<double>::quiet_NaN())])],
90  [quiet_nan=yes],
91  [quiet_nan=no])
92AC_MSG_RESULT($quiet_nan)
93if test "${quiet_nan}" = "no" ; then
94  AC_MSG_FAILURE([
95    Support for quiet NAN required.
96    Yat will not work on this system!])
97fi
98# At run-time, but this has the disadvantage that yat cannot be built 
99# for cross-compilation
100AC_MSG_CHECKING([if std::numeric_limits<>::has_quiet_NaN is true])
101AC_RUN_IFELSE(
102  [AC_LANG_PROGRAM(
103    [#include <limits>],
104    [return !std::numeric_limits<double>::has_quiet_NaN])],
105  [quiet_nan=yes],
106  [quiet_nan=no])
107AC_MSG_RESULT($quiet_nan)
108if test "${quiet_nan}" = "no" ; then
109  AC_MSG_FAILURE([
110    Support for quiet NAN required.
111    Yat will not work on this system!])
112fi
113
114# yat specific settings
115YAT_LIB="libyat.la"
116YAT_LIB_LOCATION="yat"
117AC_SUBST(YAT_LIB)
118AC_SUBST(YAT_LIB_LOCATION)
119
120AC_CONFIG_FILES([Makefile
121     doc/Makefile
122     test/Makefile
123     test/data/Makefile
124     yat/Makefile
125     yat/classifier/Makefile
126     yat/random/Makefile
127     yat/regression/Makefile
128     yat/statistics/Makefile
129     yat/utility/Makefile])
130
131AC_OUTPUT
132
133# Some more messages.
134AC_MSG_NOTICE([])
135AC_MSG_NOTICE([ Ready to compile the yat library])
136AC_MSG_NOTICE([ The following flags and libraries will be used:])
137AC_MSG_NOTICE([ +++++++++++++++++++++++++++++++++++++++++++++++])
138AC_MSG_NOTICE([  CPPFLAGS=\"$CPPFLAGS\"])
139AC_MSG_NOTICE([  CXXFLAGS=\"$CXXFLAGS\"])
140AC_MSG_NOTICE([  LIBS=\"$LIBS\"])
141AC_MSG_NOTICE([ +++++++++++++++++++++++++++++++++++++++++++++++])
142AC_MSG_NOTICE([])
143AC_MSG_NOTICE([ Now type 'make ; make check'.])
Note: See TracBrowser for help on using the repository browser.