Diff for /parser3/configure.ac between versions 1.19 and 1.25

version 1.19, 2017/05/25 12:23:36 version 1.25, 2018/10/15 15:41:45
Line 75  AC_ARG_WITH(coverage, [  --with-coverage Line 75  AC_ARG_WITH(coverage, [  --with-coverage
   
 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 -g"
         CXXFLAGS="$CXXFLAGS -O0 -pg"          CXXFLAGS="$CXXFLAGS -O0 -pg -g"
 )  )
   
 AC_ARG_WITH(assertions, [  --with-assertions       to enable assertions],  AC_ARG_WITH(assertions, [  --with-assertions       to enable assertions],
Line 182  AC_ARG_WITH(pcre,[  --with-pcre=D Line 182  AC_ARG_WITH(pcre,[  --with-pcre=D
         if test -f $PCRE/include/pcre.h -a -f $PCRE_LIBS; then          if test -f $PCRE/include/pcre.h -a -f $PCRE_LIBS; then
                 PCRE_OK="yes"                  PCRE_OK="yes"
         else          else
                 PCRE_LIBS="-L$PCRE -lpcre"                  PCRE_LIBS="-L$PCRE/lib -lpcre"
         fi          fi
   
         if test "$PCRE" = "yes"; then          if test "$PCRE" = "yes"; then
Line 231  AC_ARG_WITH(xml,[  --with-xml=D Line 231  AC_ARG_WITH(xml,[  --with-xml=D
                 AC_MSG_WARN([--with-xml value was not specified, hoping linker would find it])                  AC_MSG_WARN([--with-xml value was not specified, hoping linker would find it])
         else          else
                 XML_INCLUDES="-I$XML/include -I$XML/include/libxml2"                  XML_INCLUDES="-I$XML/include -I$XML/include/libxml2"
                   XML_LIBS="-L$XML/lib $XML_LIBS"
   
                 if test -f $XML/include/libxslt/xslt.h -a -f $XML/lib/libxml2.la \                  if test -f $XML/include/libxslt/xslt.h -a -f $XML/lib/libxml2.la \
                         -a -f $XML/lib/libxslt.la -a -f $XML/lib/libexslt.la; then                          -a -f $XML/lib/libxslt.la -a -f $XML/lib/libexslt.la; then

Removed from v.1.19  
changed lines
  Added in v.1.25


E-mail: