]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/acinclude.m4
- complete revision and clean-up of the AliHLTReconstructor after recent changes
[u/mrichter/AliRoot.git] / HLT / acinclude.m4
CommitLineData
b521659f 1dnl
2dnl $Id$
3dnl
4dnl Copyright (C) 2002 Christian Holm Christensen <cholm@nbi.dk>
5dnl
6dnl This library is free software; you can redistribute it and/or
7dnl modify it under the terms of the GNU Lesser General Public License
8dnl as published by the Free Software Foundation; either version 2.1
9dnl of the License, or (at your option) any later version.
10dnl
11dnl This library is distributed in the hope that it will be useful,
12dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14dnl Lesser General Public License for more details.
15dnl
16dnl You should have received a copy of the GNU Lesser General Public
17dnl License along with this library; if not, write to the Free
18dnl Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19dnl 02111-1307 USA
20dnl
21dnl ------------------------------------------------------------------
22AC_DEFUN([AC_DEBUG],
23[
24 AC_REQUIRE([AC_PROG_CC])
25 AC_REQUIRE([AC_PROG_CXX])
26 AC_MSG_CHECKING(whether to make debug objects)
27 AC_ARG_ENABLE(debug,
28 [AC_HELP_STRING([--enable-debug],[Enable debugging symbols in objects])],
1e27470a 29 [],[enable_debug=no])
b521659f 30 if test "x$enable_debug" = "xno" ; then
31 CFLAGS=`echo $CFLAGS | sed 's,-g,,'`
32 CXXFLAGS=`echo $CXXFLAGS | sed 's,-g,,'`
33 else
34 AC_DEFINE(__DEBUG)
35 case $CXXFLAGS in
36 *-g*) ;;
37 *) CXXFLAGS="$CXXFLAGS -g" ;;
38 esac
39 case $CFLAGS in
40 *-g*) ;;
41 *) CFLAGS="$CFLAGS -g" ;;
42 esac
43 fi
44 AC_MSG_RESULT($enable_debug 'CFLAGS=$CFLAGS')
45])
46
47dnl ------------------------------------------------------------------
48AC_DEFUN([AC_OPTIMIZATION],
49[
50 AC_REQUIRE([AC_PROG_CC])
51 AC_REQUIRE([AC_PROG_CXX])
52
53 AC_ARG_ENABLE(optimization,
54 [AC_HELP_STRING([--enable-optimization],[Enable optimization of objects])],
55 [],[enable_optimization=yes])
56
57 AC_MSG_CHECKING(for optimiztion level)
58
59 changequote(<<, >>)dnl
60 if test "x$enable_optimization" = "xno" ; then
61 CFLAGS=`echo $CFLAGS | sed 's,-O\([0-9][0-9]*\|\),,'`
62 CXXFLAGS=`echo $CXXFLAGS | sed 's,-O\([0-9][0-9]*\|\),,'`
63 elif test "x$enable_optimization" = "xyes" ; then
64 case $CXXFLAGS in
65 *-O*) ;;
66 *) CXXFLAGS="$CXXFLAGS -O2" ;;
67 esac
68 case $CFLAGS in
69 *-O*) ;;
70 *) CFLAGS="$CXXFLAGS -O2" ;;
71 esac
72 else
73 CFLAGS=`echo $CFLAGS | sed "s,-O\([0-9][0-9]*\|\),-O$enable_optimization,"`
74 CXXFLAGS=`echo $CXXFLAGS | sed "s,-O\([0-9][0-9]*\|\),-O$enable_optimization,"`
75 fi
76 changequote([, ])dnl
77 AC_MSG_RESULT($enable_optimization 'CFLAGS=$CFLAGS')
78])
79
80dnl ------------------------------------------------------------------
81
82dnl
83dnl Autoconf macro to check for existence or ROOT on the system
84dnl Synopsis:
85dnl
86dnl ROOT_PATH([MINIMUM-VERSION, [ACTION-IF-FOUND, [ACTION-IF-NOT-FOUND]]])
87dnl
88dnl Some examples:
89dnl
90dnl ROOT_PATH(3.03/05, , AC_MSG_ERROR(Your ROOT version is too old))
91dnl ROOT_PATH(, AC_DEFINE([HAVE_ROOT]))
92dnl
93dnl The macro defines the following substitution variables
94dnl
95dnl ROOTCONF full path to root-config
96dnl ROOTEXEC full path to root
97dnl ROOTCINT full path to rootcint
98dnl ROOTLIBDIR Where the ROOT libraries are
99dnl ROOTINCDIR Where the ROOT headers are
100dnl ROOTCFLAGS Extra compiler flags
101dnl ROOTLIBS ROOT basic libraries
102dnl ROOTGLIBS ROOT basic + GUI libraries
103dnl ROOTAUXLIBS Auxilary libraries and linker flags for ROOT
104dnl ROOTAUXCFLAGS Auxilary compiler flags
105dnl ROOTRPATH Same as ROOTLIBDIR
106dnl
107dnl The macro will fail if root-config and rootcint isn't found.
108dnl
109dnl Christian Holm Christensen <cholm@nbi.dk>
110dnl
111AC_DEFUN([ROOT_PATH],
112[
113 AC_ARG_WITH(rootsys,
114 [ --with-rootsys top of the ROOT installation directory],
115 user_rootsys=$withval,
116 user_rootsys="none")
117 if test ! x"$user_rootsys" = xnone; then
118 rootbin="$user_rootsys/bin"
119 elif test ! x"$ROOTSYS" = x ; then
120 rootbin="$ROOTSYS/bin"
121 else
122 rootbin=$PATH
123 fi
124 AC_PATH_PROG(ROOTCONF, root-config , no, $rootbin)
125 AC_PATH_PROG(ROOTEXEC, root , no, $rootbin)
126 AC_PATH_PROG(ROOTCINT, rootcint , no, $rootbin)
127
128 if test ! x"$ROOTCONF" = "xno" && \
129 test ! x"$ROOTCINT" = "xno" ; then
130
131 # define some variables
132 ROOTLIBDIR=`$ROOTCONF --libdir`
133 ROOTINCDIR=`$ROOTCONF --incdir`
134 ROOTCFLAGS=`$ROOTCONF --noauxcflags --cflags`
135 ROOTLIBS=`$ROOTCONF --noauxlibs --noldflags --libs`
136 ROOTGLIBS=`$ROOTCONF --noauxlibs --noldflags --glibs`
137 ROOTAUXCFLAGS=`$ROOTCONF --auxcflags`
138 ROOTAUXLIBS=`$ROOTCONF --auxlibs`
139 ROOTRPATH=$ROOTLIBDIR
140
141 if test $1 ; then
142 AC_MSG_CHECKING(wether ROOT version >= [$1])
143 vers=`$ROOTCONF --version | tr './' ' ' | awk 'BEGIN { FS = " "; } { printf "%d", ($''1 * 1000 + $''2) * 1000 + $''3;}'`
144 requ=`echo $1 | tr './' ' ' | awk 'BEGIN { FS = " "; } { printf "%d", ($''1 * 1000 + $''2) * 1000 + $''3;}'`
145 if test $vers -lt $requ ; then
146 AC_MSG_RESULT(no)
147 no_root="yes"
148 else
149 AC_MSG_RESULT(yes)
150 fi
151 fi
152 else
153 # otherwise, we say no_root
154 no_root="yes"
155 fi
156
157 AC_SUBST(ROOTLIBDIR)
158 AC_SUBST(ROOTINCDIR)
159 AC_SUBST(ROOTCFLAGS)
160 AC_SUBST(ROOTLIBS)
161 AC_SUBST(ROOTGLIBS)
162 AC_SUBST(ROOTAUXLIBS)
163 AC_SUBST(ROOTAUXCFLAGS)
164 AC_SUBST(ROOTRPATH)
165
166 if test "x$no_root" = "x" ; then
167 ifelse([$2], , :, [$2])
168 else
169 ifelse([$3], , :, [$3])
170 fi
171])
172
173
174#
175# EOF
176#