Warning, /coresoftware/offline/framework/phool/configure.ac is written in an unsupported language. File is not indexed.
0001 AC_INIT(phool, [2.0])
0002 AC_CONFIG_SRCDIR([configure.ac])
0003
0004 AM_INIT_AUTOMAKE
0005 AC_PROG_CXX(CC 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 treat warnings as errors: -Werror
0011 if test $ac_cv_prog_gxx = yes; then
0012 CXXFLAGS="$CXXFLAGS -Wall -pedantic -Wextra -Wshadow -Werror"
0013 fi
0014
0015 AC_ARG_ENABLE(online,
0016 [ --enable-online build using for online [default=no]],
0017 [case "${enableval}" in
0018 yes) online=true ;;
0019 no) online=false ;;
0020 *) AC_MSG_ERROR(bad value ${enableval} for --enable-online) ;;
0021 esac],
0022 online=false)
0023 AM_CONDITIONAL(USE_ONLINE, test "x$online" = xtrue)
0024
0025 CINTDEFS=" -noIncludePaths -inlineInputHeader "
0026
0027 AC_SUBST(CINTDEFS)
0028
0029 AC_CONFIG_FILES([Makefile])
0030 AC_OUTPUT