Warning, /coresoftware/offline/packages/compressor/configure.ac is written in an unsupported language. File is not indexed.
0001 AC_INIT(compressclus,[1.0])
0002 AC_CONFIG_SRCDIR([configure.ac])
0003 AM_INIT_AUTOMAKE
0004
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 if test $ac_cv_prog_gxx = yes; then
0011 CXXFLAGS="$CXXFLAGS -Wall -Werror -Wextra"
0012 fi
0013 case $CXX in
0014 clang++)
0015 CXXFLAGS="$CXXFLAGS -Wno-bitwise-instead-of-logical -Wno-unknown-warning-option"
0016 ;;
0017 esac
0018
0019 AC_CONFIG_FILES([Makefile])
0020 AC_OUTPUT