*** Wrkit-GTK/configure Tue Mar 7 01:34:16 2000 --- ./configure Sun Feb 10 14:05:15 2002 *************** *** 5,9 **** echo '# Generated by ./configure' ! function find_header { descr=$1 var=$2 --- 5,9 ---- echo '# Generated by ./configure' ! find_header() { descr=$1 var=$2 *************** *** 18,22 **** return fi; ! IFS=":" for path in $paths; do if test -e $path/$file; then --- 18,22 ---- return fi; ! paths=`echo $paths|tr ':' ' '` for path in $paths; do if test -e $path/$file; then *************** *** 30,34 **** } ! function find_lib { descr=$1 varp=$2 --- 30,34 ---- } ! find_lib() { descr=$1 varp=$2 *************** *** 46,52 **** return fi; ! IFS=":" ! for path in $defp:$paths; do ! for lib in $defl:$libs; do if test -e $path/lib$lib.so || test -e $path/lib$lib.a; then echo "$path/lib$lib" 1>&2 --- 46,53 ---- return fi; ! paths=`echo $paths|tr ':' ' '` ! libs=`echo $libs|tr ':' ' '` ! for path in $defp $paths; do ! for lib in $defl $libs; do if test -e $path/lib$lib.so || test -e $path/lib$lib.a; then echo "$path/lib$lib" 1>&2 *************** *** 62,72 **** } ! find_header "Tcl header" TCLINCLUDE /usr/include /usr/include/tcl:/usr/local/include:/usr/local/include/tcl tcl.h ! find_lib "Tcl library" TCLPATH /usr/lib /usr/X11R6/lib:/usr/local/lib:/usr/local/X11R6/lib TCLLIB tcl tcl8.0:tcl4.2 ! find_header "Tk header" TKINCLUDE /usr/include /usr/include/tk:/usr/local/include:/usr/local/include/tk tk.h ! find_lib "Tk library" TKPATH /usr/lib /usr/X11R6/lib:/usr/local/lib:/usr/local/X11R6/lib TKLIB tk tk8.0:tk4.2 echo Configuration stored in \".config\". 1>&2 --- 63,73 ---- } ! find_header "Tcl header" TCLINCLUDE /usr/include /usr/include/tcl:/usr/local/include:/usr/local/include/tcl:/usr/local/include/tcl8.3 tcl.h ! find_lib "Tcl library" TCLPATH /usr/lib /usr/X11R6/lib:/usr/local/lib:/usr/local/X11R6/lib TCLLIB tcl tcl8.3:tcl8.0:tcl4.2:tcl83 ! find_header "Tk header" TKINCLUDE /usr/include /usr/include/tk:/usr/local/include:/usr/local/include/tk:/usr/local/include/tk8.3 tk.h ! find_lib "Tk library" TKPATH /usr/lib /usr/X11R6/lib:/usr/local/lib:/usr/local/X11R6/lib TKLIB tk tk8.3:tk8.0:tk4.2:tk83 echo Configuration stored in \".config\". 1>&2