|
|
| version 1.14, 2017/02/26 21:33:37 | version 1.17, 2017/05/03 16:57:47 |
|---|---|
| Line 1 | Line 1 |
| dnl Autoconf initialisation | dnl Autoconf initialisation |
| AC_PREREQ(2.59) | AC_PREREQ(2.59) |
| AC_INIT(parser, 3.4.5) | AC_INIT(parser, 3.4.6b) |
| AC_CONFIG_SRCDIR(README) | AC_CONFIG_SRCDIR(README) |
| Line 64 AC_ARG_WITH(build-warnings, [ --with-bu | Line 64 AC_ARG_WITH(build-warnings, [ --with-bu |
| CXXFLAGS="$CXXFLAGS -Wextra -Wall -Wno-parentheses" | CXXFLAGS="$CXXFLAGS -Wextra -Wall -Wno-parentheses" |
| ) | ) |
| AC_ARG_WITH(coverage, [ --with-coverage to enable gcov code coverage support], | AC_ARG_WITH(coverage, [ --with-coverage to enable gcov code coverage support], |
| AC_MSG_WARN(enabling gcov support) | AC_MSG_WARN(enabling gcov support) |
| CFLAGS=`echo "$CFLAGS" | $SED -e 's/-O[0-9]*//g'` | CFLAGS=`echo "$CFLAGS" | $SED -e 's/-O[0-9]*//g'` |
| CXXFLAGS=`echo "$XXCFLAGS" | $SED -e 's/-O[0-9]*//g'` | CXXFLAGS=`echo "$XXCFLAGS" | $SED -e 's/-O[0-9]*//g'` |
| Line 73 AC_ARG_WITH(coverage, [ --with-coverage | Line 73 AC_ARG_WITH(coverage, [ --with-coverage |
| LDFLAGS="$LDFLAGS -lgcov" | LDFLAGS="$LDFLAGS -lgcov" |
| ) | ) |
| AC_ARG_WITH(profiler, [ --with-profiler to enable gprof code profiler support], | AC_ARG_WITH(profiler, [ --with-profiler to enable gprof code profiler support], |
| AC_MSG_WARN(enabling gprof support) | AC_MSG_WARN(enabling gprof support) |
| CFLAGS="$CFLAGS -O0 -pg" | CFLAGS="$CFLAGS -O0 -pg" |
| CXXFLAGS="$CXXFLAGS -O0 -pg" | CXXFLAGS="$CXXFLAGS -O0 -pg" |