Warning, /analysis/MultiDetectorMultiplicity/src/configure.ac is written in an unsupported language. File is not indexed.
0001 AC_INIT(multidetectormultiplicity,[1.00])
0002 AC_CONFIG_SRCDIR([configure.ac])
0003
0004 AM_INIT_AUTOMAKE
0005 AC_PROG_CXX(CC g++)
0006 LT_INIT([disable-static])
0007
0008 if test $ac_cv_prog_gxx = yes; then
0009 CXXFLAGS="$CXXFLAGS -Wall -Werror"
0010 fi
0011
0012 dnl test for root 6
0013 if test `root-config --version | gawk '{print $1>=6.?"1":"0"}'` = 1; then
0014 CINTDEFS=" -noIncludePaths -inlineInputHeader "
0015 AC_SUBST(CINTDEFS)
0016 fi
0017 AM_CONDITIONAL([MAKEROOT6],[test `root-config --version | gawk '{print $1>=6.?"1":"0"}'` = 1])
0018
0019 AC_CONFIG_FILES([Makefile])
0020 AC_OUTPUT