Diff for /parser3/Attic/configure.in between versions 1.170 and 1.171

version 1.170, 2012/06/15 13:04:12 version 1.171, 2012/06/15 19:30:47
Line 134  AC_ARG_WITH(gc,[  --with-gc[=D] Line 134  AC_ARG_WITH(gc,[  --with-gc[=D]
         else          else
                 GC_LIBS="-L$GC -lgc"                  GC_LIBS="-L$GC -lgc"
         fi          fi
   
           if test "$GC" = "yes"; then
                   GC=""
                   GC_LIBS="-lgc"
                   AC_MSG_WARN([--with-gc value was not specified, hoping linker would find it])
           fi
 ],[  ],[
         GC_LIBS="-lgc"          GC_LIBS="-lgc"
         AC_MSG_WARN([--with-gc was not specified, hoping linker would find it])          AC_MSG_WARN([--with-gc was not specified, hoping linker would find it])
Line 148  if test -z "$GC_OK"; then Line 154  if test -z "$GC_OK"; then
         ,          ,
                 AC_MSG_RESULT(no)                  AC_MSG_RESULT(no)
                 if test -z "$GC"; then                  if test -z "$GC"; then
                         AC_MSG_ERROR(please specify path to libgc: --with-gc)                          AC_MSG_ERROR(please specify path to libgc: --with-gc=D)
                 else                  else
                         AC_MSG_ERROR($GC does not seem to be valid libgc installation directory)                          AC_MSG_ERROR($GC does not seem to be valid libgc installation directory)
                 fi                  fi
Line 172  AC_ARG_WITH(pcre,[  --with-pcre=D Line 178  AC_ARG_WITH(pcre,[  --with-pcre=D
                 PCRE_LIBS="-L$PCRE -lpcre"                  PCRE_LIBS="-L$PCRE -lpcre"
         fi          fi
   
           if test "$PCRE" = "yes"; then
                   PCRE=""
                   PCRE_LIBS="-lpcre"
                   PCRE_INCLUDES=""
                   AC_MSG_WARN([--with-pcre value was not specified, hoping linker would find it])
           fi
 ],[  ],[
         PCRE_LIBS="-lpcre"          PCRE_LIBS="-lpcre"
         PCRE_INCLUDES=""          PCRE_INCLUDES=""
Line 187  if test -z "$PCRE_OK"; then Line 199  if test -z "$PCRE_OK"; then
         ,          ,
                 AC_MSG_RESULT(no)                  AC_MSG_RESULT(no)
                 if test -z "$PCRE"; then                  if test -z "$PCRE"; then
                         AC_MSG_ERROR(please specify path to PCRE: --with-pcre)                          AC_MSG_ERROR(please specify path to PCRE: --with-pcre=D)
                 else                  else
                         AC_MSG_ERROR($PCRE does not seem to be valid PCRE installation directory)                          AC_MSG_ERROR($PCRE does not seem to be valid PCRE installation directory)
                 fi                  fi
Line 229  AC_ARG_WITH(xml,[  --with-xml=D Line 241  AC_ARG_WITH(xml,[  --with-xml=D
                 ,                  ,
                         AC_MSG_RESULT(no)                          AC_MSG_RESULT(no)
                         if test -z "$XML"; then                          if test -z "$XML"; then
                                 AC_MSG_ERROR(please specify path to Gnome XML libraries: --with-xml)                                  AC_MSG_ERROR(please specify path to Gnome XML libraries: --with-xml=D)
                         else                          else
                                 AC_MSG_ERROR($XML does not seem to be valid Gnome XML installation directory)                                  AC_MSG_ERROR($XML does not seem to be valid Gnome XML installation directory)
                         fi                          fi

Removed from v.1.170  
changed lines
  Added in v.1.171


E-mail: