Index: configure =================================================================== diff -u -r78e6c23b4195221aba2a75be9e813382d74f20fb -ra16cfab111738c0792b602340bb9f86263206a74 --- configure (.../configure) (revision 78e6c23b4195221aba2a75be9e813382d74f20fb) +++ configure (.../configure) (revision a16cfab111738c0792b602340bb9f86263206a74) @@ -1365,6 +1365,9 @@ --with-all=yes|no, --without-all disables built of all --with-tclinclude directory containing the public Tcl header files. + --with-expat=sys assumes a system-wide expat installation, + --with-expat= point to a custom expat installation, + --without-expat falls back to the bundled expat installation --with-tcl directory containing tcl configuration (tclConfig.sh) --with-tk directory containing tk configuration (tkConfig.sh) @@ -2016,6 +2019,14 @@ fi +# Check whether --with-expat was given. +if test "${with_expat+set}" = set; then + withval=$with_expat; with_expat=$withval +else + with_expat=bundle +fi + + subdirs="" if test "$with_all" = yes; then @@ -2038,6 +2049,11 @@ test_actiweb="" libdirs_actiweb="" apps_actiweb="" + if ! test "${with_expat}" = bundle ; then + { echo "$as_me:$LINENO: result: WARNING: expat configuration ${with_expat} ignored" >&5 +echo "${ECHO_T}WARNING: expat configuration ${with_expat} ignored" >&6; } + with_expat="bundle" + fi fi