source: plugins/base1/se.lu.thep.wenni/trunk/configure.ac @ 831

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

Removed bindir and cleaned up indentation.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 6.4 KB
Line 
1# Process this file with autoconf to produce a configure script.
2#
3# $Id: configure.ac 831 2008-11-27 22:22:45Z jari $
4#
5# Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson
6# Copyright (C) 2007 Peter Johansson
7# Copyright (C) 2008 Jari Häkkinen
8#
9# This file is part of WeNNI,
10# http://baseplugins.thep.lu.se/wiki/se.lu.thep.WeNNI
11#
12# WeNNI is free software; you can redistribute it and/or modify it
13# under the terms of the GNU General Public License as published by the
14# Free Software Foundation; either version 3 of the License, or (at
15# your option) any later version.
16#
17# WeNNI is distributed in the hope that it will be useful, but WITHOUT
18# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20# for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with WeNNI. If not, see <http://www.gnu.org/licenses/>.
24#
25# Author: Jari Hakkinen, jari@thep.lu.se
26#
27# If you grabbed the source from subversion you should, at top-level,
28# execute:
29#   ./bootstrap
30#
31
32AC_PREREQ(2.57)
33AC_INIT([[wenni]],[0.7pre],[jari@thep.lu.se])
34AC_CONFIG_SRCDIR([lib/weight.h])
35AC_CONFIG_AUX_DIR([autotools])
36AC_PREFIX_DEFAULT([/usr/local])
37
38AM_CONFIG_HEADER([config.h])
39AM_INIT_AUTOMAKE
40
41# Set default programming language
42AC_LANG(C++)
43
44# Checks for programs.
45AC_PROG_CPP
46AC_PROG_CXX
47AC_PROG_INSTALL
48AC_PROG_LIBTOOL
49AC_PROG_RANLIB
50AC_PROG_SED
51
52CXXFLAGS="-Wall -pedantic"
53CPPFLAGS="-DHAVE_INLINE=1"
54AC_ARG_ENABLE(debug,
55              [ AS_HELP_STRING([--enable-debug],
56                               [turn on debug options and code]) ],
57              [ CXXFLAGS="$CXXFLAGS -g -O" ],
58              [ CXXFLAGS="$CXXFLAGS -O3"
59                CPPFLAGS="$CPPFLAGS -DNDEBUG -DGSL_RANGE_CHECK_OFF" ])
60
61AC_ARG_ENABLE(state,
62              [ AS_HELP_STRING([--enable-state],
63                               [stand-alone, base1, or base2 [default=base2]])],
64              [ if test "x$enableval" = "xstand-alone" ; then
65                    state=stand-alone
66                elif test "x$enableval" = "xbase1" ; then
67                    state=base1
68                elif test "x$enableval" = "xbase2" ; then
69                    state=base2
70                else
71                    echo
72                    echo "Error!"
73                    echo "Unknown value for `--enable-state'"
74                    echo "allowed values are: `base2', `base1', or `stand-alone'"
75                    exit -1
76                fi ],
77              [ state=base2 ])
78
79AM_CONDITIONAL([BASE1], [test x$state = xbase1])
80AM_CONDITIONAL([BASE2], [test x$state = xbase2])
81
82AC_ARG_WITH(basedir,[AS_HELP_STRING([--with-basedir=DIR]),
83                     [root directory for base installation])],
84            [BASEDIR=$withval],[BASEDIR=/usr/local/base])
85
86AC_ARG_WITH(plugindir,[AS_HELP_STRING([--with-plugindir=DIR],
87                      [root directory for base plug-ins])],
88            [PLUGINDIR=$withval],
89            [if (test x$state = xbase1); then
90               PLUGINDIR="$BASEDIR/plugins/bin/wenni"
91             elif (test x$state = xbase2); then
92               PLUGINDIR="$BASEDIR/plugins/se/lu/thep/wenni"
93             fi])
94
95if (test x$state = xbase1); then
96  # check for BASE1 API
97  OLD_CPPFLAGS=$CPPFLAGS;
98  OLD_LDFLAGS=$LDFLAGS;
99  LDFLAGS="-L$BASEDIR/lib"
100  AC_CHECK_LIB([base], [base_finite], [BASELDFLAGS="-L$BASEDIR/lib -lbase"],
101               [AC_MSG_FAILURE([cannot find base library])])
102  CPPFLAGS="-I$BASEDIR/include/cxx $CPPFLAGS"
103  AC_CHECK_HEADERS([basefile.h],[BASECPPFLAGS=-I$BASEDIR/include/cxx],
104               [AC_MSG_FAILURE([cannot find base header files])])
105  CPPFLAGS=$OLD_CPPFLAGS;
106  LDFLAGS=$OLD_LDFLAGS;
107  AC_SUBST(BASECPPFLAGS)
108  AC_SUBST(BASELDFLAGS)
109  # Set BASE1 plug-in name
110  BASEPLUGINEXECNAME=$PLUGINDIR/wenni.pl
111  AC_SUBST(BASEPLUGINEXECNAME)
112fi
113if (test x$state = xbase2); then
114  AC_CHECK_FILE([$BASEDIR/www/WEB-INF/lib/BASE2Core.jar], [],
115                [AC_MSG_FAILURE([cannot find BASE2Core.jar])])
116  JAVACFLAGS=$BASEDIR/www/WEB-INF/lib/BASE2Core.jar
117  AC_CHECK_FILE([$BASEDIR/www/WEB-INF/lib/BASE2CorePlugins.jar], [],
118                [AC_MSG_FAILURE([cannot find BASE2CorePlugins.jar])])
119  JAVACFLAGS="$BASEDIR/www/WEB-INF/lib/BASE2CorePlugins.jar:$JAVACFLAGS"
120  AC_SUBST(JAVACFLAGS)
121fi
122
123AC_ARG_WITH(gsl,[AS_HELP_STRING([--with-gsl=DIR], [prefix for gsl files])],
124            [CPPFLAGS="-I$withval/include $CPPFLAGS"
125             LDFLAGS="-L$withval/lib $LDFLAGS"], [])
126
127AC_SEARCH_LIBS(sqrt, m)
128AC_SEARCH_LIBS(ATL_ctrsv, atlas, [LIBS="-lcblas $LIBS"],
129               AC_SEARCH_LIBS(cblas_sdsdot, gslcblas))
130AC_SEARCH_LIBS(gsl_vector_alloc, gsl)
131
132CPP_TOOLS_LIBPATH="lib/c++_tools"
133AC_SUBST(CPP_TOOLS_LIBPATH)
134
135AC_CONFIG_FILES([Makefile
136                 base/Makefile
137                 base/base1/Makefile
138                 base/base1/base_plugin_script/Makefile
139                 base/base1/BaseFileConverter/Makefile
140                 base/base2/Makefile
141                 bin/Makefile
142                 bin/NNIFileConverter/Makefile
143                 bin/nni/Makefile
144                 data/Makefile
145                 lib/Makefile
146                 lib/c++_tools/Makefile
147                 lib/c++_tools/gslapi/Makefile
148                 lib/c++_tools/utility/Makefile
149                 test/Makefile])
150
151AC_OUTPUT
152
153# Some more messages.
154AC_MSG_NOTICE([])
155AC_MSG_NOTICE([ Ready to build WeNNI package containing])
156AC_MSG_NOTICE([])
157AC_MSG_NOTICE([     stand-alone binaries:])
158AC_MSG_NOTICE([         NNIFileConverter])
159AC_MSG_NOTICE([         nni])
160if (test x$state = xbase1); then
161  AC_MSG_NOTICE([     BASE1 plug-in:])
162  AC_MSG_NOTICE([         BaseFileConverter])
163  AC_MSG_NOTICE([         base_plugin_script])
164fi
165if (test x$state = xbase2); then
166  AC_MSG_NOTICE([     BASE2 plug-in:])
167  AC_MSG_NOTICE([         WeNNI.jar])
168fi
169AC_MSG_NOTICE([])
170AC_MSG_NOTICE([ WeNNI package will be installed in])
171AC_MSG_NOTICE([    $PLUGINDIR ])
172AC_MSG_NOTICE([])
173AC_MSG_NOTICE([ The following libs and flags will be used:])
174AC_MSG_NOTICE([ +++++++++++++++++++++++++++++++++++++++++++++++])
175AC_MSG_NOTICE([  CPPFLAGS    =\"$CPPFLAGS\"])
176AC_MSG_NOTICE([  CXXFLAGS    =\"$CXXFLAGS\"])
177AC_MSG_NOTICE([  LDFLAGS     =\"$LDFLAGS\"])
178AC_MSG_NOTICE([  LIBS        =\"$LIBS\"])
179if (test x$state = xbase1); then
180  AC_MSG_NOTICE([  BASECPPFLAGS=\"$BASECPPFLAGS\"])
181  AC_MSG_NOTICE([  BASELDFLAGS =\"$BASELDFLAGS\"])
182fi
183if (test x$state = xbase2); then
184  AC_MSG_NOTICE([  JAVACFLAGS=\"$JAVACFLAGS\"])
185fi
186AC_MSG_NOTICE([ +++++++++++++++++++++++++++++++++++++++++++++++])
187AC_MSG_NOTICE([])
188AC_MSG_NOTICE([ Now type 'make ; make check ; make install'.])
Note: See TracBrowser for help on using the repository browser.