Back to home page

sPhenix code displayed by LXR

 
 

    


Warning, /analysis/EICAnalysis/configure.ac is written in an unsupported language. File is not indexed.

0001 AC_INIT(eicana,[1.00])
0002 AC_CONFIG_SRCDIR([configure.ac])
0003 AM_INIT_AUTOMAKE
0004 
0005 AC_PROG_CXX(g++)
0006 LT_INIT([disable-static])
0007 
0008 dnl   no point in suppressing warnings people should
0009 dnl   at least see them, so here we go for g++: -Wall
0010 dnl   make warnings fatal errors: -Werror
0011 if test $ac_cv_prog_gxx = yes; then
0012    CXXFLAGS="$CXXFLAGS -Wall -Werror"
0013 fi
0014 
0015 dnl test for root 6
0016 if test `root-config --version | gawk '{print $1>=6.?"1":"0"}'` = 1; then
0017 CINTDEFS=" -noIncludePaths  -inlineInputHeader "
0018 AC_SUBST(CINTDEFS)
0019 fi
0020 AM_CONDITIONAL([MAKEROOT6],[test `root-config --version | gawk '{print $1>=6.?"1":"0"}'` = 1])
0021 
0022 AC_CONFIG_FILES([Makefile])
0023 AC_OUTPUT