1*eb8dc403SDave CobbleyPatch by Chris Waters sets path which are normally point to a directory 2*eb8dc403SDave Cobbleywith Tk sources to a subdirectory of /usr/include/tcl8.4 (debian/rules 3*eb8dc403SDave Cobbleyputs private Tk headers there). 4*eb8dc403SDave Cobbley 5*eb8dc403SDave Cobbley--- tk8.5-8.5.8.orig/unix/tkConfig.sh.in 6*eb8dc403SDave Cobbley+++ tk8.5-8.5.8/unix/tkConfig.sh.in 7*eb8dc403SDave Cobbley@@ -55,7 +55,7 @@ 8*eb8dc403SDave Cobbley 9*eb8dc403SDave Cobbley # String to pass to linker to pick up the Tk library from its 10*eb8dc403SDave Cobbley # build directory. 11*eb8dc403SDave Cobbley-TK_BUILD_LIB_SPEC='@TK_BUILD_LIB_SPEC@' 12*eb8dc403SDave Cobbley+TK_BUILD_LIB_SPEC='@TK_LIB_SPEC@' 13*eb8dc403SDave Cobbley 14*eb8dc403SDave Cobbley # String to pass to linker to pick up the Tk library from its 15*eb8dc403SDave Cobbley # installed directory. 16*eb8dc403SDave Cobbley@@ -71,7 +71,7 @@ 17*eb8dc403SDave Cobbley # different place than the directory containing the source files, this 18*eb8dc403SDave Cobbley # points to the location of the sources, not the location where Tk was 19*eb8dc403SDave Cobbley # compiled. 20*eb8dc403SDave Cobbley-TK_SRC_DIR='@TK_SRC_DIR@' 21*eb8dc403SDave Cobbley+TK_SRC_DIR='@includedir@/tk-private' 22*eb8dc403SDave Cobbley 23*eb8dc403SDave Cobbley # Needed if you want to make a 'fat' shared library library 24*eb8dc403SDave Cobbley # containing tk objects or link a different wish. 25*eb8dc403SDave Cobbley@@ -86,14 +86,14 @@ 26*eb8dc403SDave Cobbley 27*eb8dc403SDave Cobbley # String to pass to linker to pick up the Tk stub library from its 28*eb8dc403SDave Cobbley # build directory. 29*eb8dc403SDave Cobbley-TK_BUILD_STUB_LIB_SPEC='@TK_BUILD_STUB_LIB_SPEC@' 30*eb8dc403SDave Cobbley+TK_BUILD_STUB_LIB_SPEC='@TK_STUB_LIB_SPEC@' 31*eb8dc403SDave Cobbley 32*eb8dc403SDave Cobbley # String to pass to linker to pick up the Tk stub library from its 33*eb8dc403SDave Cobbley # installed directory. 34*eb8dc403SDave Cobbley TK_STUB_LIB_SPEC='@TK_STUB_LIB_SPEC@' 35*eb8dc403SDave Cobbley 36*eb8dc403SDave Cobbley # Path to the Tk stub library in the build directory. 37*eb8dc403SDave Cobbley-TK_BUILD_STUB_LIB_PATH='@TK_BUILD_STUB_LIB_PATH@' 38*eb8dc403SDave Cobbley+TK_BUILD_STUB_LIB_PATH='@TK_STUB_LIB_PATH@' 39*eb8dc403SDave Cobbley 40*eb8dc403SDave Cobbley # Path to the Tk stub library in the install directory. 41*eb8dc403SDave Cobbley TK_STUB_LIB_PATH='@TK_STUB_LIB_PATH@' 42