Index: Makefile.in =================================================================== RCS file: /cvsroot/tktable/htmlwidget/Makefile.in,v retrieving revision 1.1 diff -u -p -u -p -r1.1 Makefile.in --- Makefile.in 17 Dec 2002 18:31:04 -0000 1.1 +++ Makefile.in 31 Jul 2004 00:35:42 -0000 @@ -232,8 +232,8 @@ install-binaries: binaries install-lib-b #======================================================================== install-libraries: libraries - @mkdir -p $(DESTDIR)$(includedir) - @echo "Installing header files in $(DESTDIR)$(includedir)" +# @mkdir -p $(DESTDIR)$(includedir) +# @echo "Installing header files in $(DESTDIR)$(includedir)" # @for i in $(GENERIC_HDRS) ; do \ # echo "Installing $$i" ; \ # $(INSTALL_DATA) $$i $(DESTDIR)$(includedir) ; \ Index: configure.in =================================================================== RCS file: /cvsroot/tktable/htmlwidget/configure.in,v retrieving revision 1.16 diff -u -p -u -p -r1.16 configure.in --- configure.in 17 Dec 2002 18:31:04 -0000 1.16 +++ configure.in 31 Jul 2004 00:35:43 -0000 @@ -208,7 +208,9 @@ then gcclibdir=`echo $gcclibdir | sed -e "s|^Reading specs from ||"` if test "X$gcclibdir" != "X" ; then gcclibdir=`dirname $gcclibdir` - SHLIB_LD_LIBS="${SHLIB_LD_LIBS} -L$gcclibdir -lgcc" + if test "X`uname -s`" != "XDarwin"; then + SHLIB_LD_LIBS="${SHLIB_LD_LIBS} -L$gcclibdir -lgcc" + fi fi fi fi Index: src/htmlexts.c =================================================================== RCS file: /cvsroot/tktable/htmlwidget/src/htmlexts.c,v retrieving revision 1.7 diff -u -p -u -p -r1.7 htmlexts.c --- src/htmlexts.c 27 Jan 2003 03:22:31 -0000 1.7 +++ src/htmlexts.c 31 Jul 2004 00:35:43 -0000 @@ -2717,8 +2717,6 @@ void HtmlTclizeFind(Tcl_Interp *interp, Tcl_DStringResult(interp, &str); } -extern int (*HtmlFetchSelectionPtr)(ClientData , int, char *, int ); - #if INTERFACE #define DLL_EXPORT #endif Index: tclconfig/tcl.m4 =================================================================== RCS file: /cvsroot/tktable/htmlwidget/tclconfig/tcl.m4,v retrieving revision 1.1 diff -u -p -u -p -r1.1 tcl.m4 --- tclconfig/tcl.m4 17 Dec 2002 18:31:05 -0000 1.1 +++ tclconfig/tcl.m4 31 Jul 2004 00:35:43 -0000 @@ -1905,7 +1905,18 @@ closedir(d); AC_DEFUN(TEA_PATH_X, [ if test "${TEA_PLATFORM}" = "unix" ; then - TEA_PATH_UNIX_X + case ${TK_DEFS} in + *_OSX_TK*) + AC_DEFINE(MAC_OSX_TK) + TEA_WINDOWINGSYSTEM="aqua" + ;; + *) + TEA_PATH_UNIX_X + TEA_WINDOWINGSYSTEM="x11" + ;; + esac + elif test "${TEA_PLATFORM}" = "windows" ; then + TEA_WINDOWINGSYSTEM="windows" fi ])