Ignore:
Timestamp:
Mar 17, 2016, 7:56:48 PM (8 years ago)
Author:
dkearney
Message:

removing hardcoded path to tcl/tk source header files
tcl/tk source path is provided by TCL_SRC_DIR and TK_SRC_DIR in configure file
updating parameter lists for RpSqueezer?.c calls to tcl/tk 8.5 functions
updating sidebarframe.tcl widget for blt4

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/blt4_trunk/configure.in

    r6129 r6136  
    151151  if test -f "$tclconfig" ; then
    152152    . $tclconfig
     153    break
     154  fi
     155done
     156
     157TK_VERSION="8.4"
     158for dir in \
     159 ${exec_prefix} \
     160 ${exec_prefix}/lib ; do
     161  tkconfig="${dir}/tkConfig.sh"
     162  if test -f "$tkconfig" ; then
     163    . $tkconfig
    153164    break
    154165  fi
     
    451462AC_SUBST(TCL_SHLIB_LDFLAGS)
    452463AC_SUBST(TCL_SHLIB_SUFFIX)
     464AC_SUBST(TCL_SRC_DIR)
    453465AC_SUBST(TCL_VERSION)
    454466AC_SUBST(TK_INC_SPEC)
    455467AC_SUBST(TK_LIB_SPEC)
     468AC_SUBST(TK_SRC_DIR)
    456469AC_SUBST(TK_VERSION)
    457470AC_SUBST(TK_XLIBSW)
Note: See TracChangeset for help on using the changeset viewer.