diff options
author | Koen Kooi <koen@openembedded.org> | 2010-05-19 13:59:59 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-05-19 14:20:54 +0200 |
commit | e92042a4e03b0d40dab3886867340059e6fafcb3 (patch) | |
tree | 732ab8b0d0586f6cf7e8d307e644cea2e94503a8 /recipes/tcltk/tk-8.5.8/confsearch.diff | |
parent | 0ad7f1f257fa28707329dd1ade790335b5a1882e (diff) |
tk: add 8.5.8
Diffstat (limited to 'recipes/tcltk/tk-8.5.8/confsearch.diff')
-rw-r--r-- | recipes/tcltk/tk-8.5.8/confsearch.diff | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes/tcltk/tk-8.5.8/confsearch.diff b/recipes/tcltk/tk-8.5.8/confsearch.diff new file mode 100644 index 0000000000..c51e475426 --- /dev/null +++ b/recipes/tcltk/tk-8.5.8/confsearch.diff @@ -0,0 +1,32 @@ +Patch by Sergei Golovan allows to find tclConfig.sh in /usr/share/tcltk/tcl8.5 +and tkConfig.sh in /usr/share/tcltk/tk8.5 where they are located in Debian +installation. + +--- tk8.5-8.5.8.orig/unix/configure ++++ tk8.5-8.5.8/unix/configure +@@ -1431,6 +1431,7 @@ + `ls -d ${prefix}/lib 2>/dev/null` \ + `ls -d /usr/local/lib 2>/dev/null` \ + `ls -d /usr/contrib/lib 2>/dev/null` \ ++ `ls -d /usr/share/tcltk/tcl8.5 2>/dev/null` \ + `ls -d /usr/lib 2>/dev/null` \ + ; do + if test -f "$i/tclConfig.sh" ; then +--- tk8.5-8.5.8.orig/unix/tcl.m4 ++++ tk8.5-8.5.8/unix/tcl.m4 +@@ -93,6 +93,7 @@ + `ls -d ${prefix}/lib 2>/dev/null` \ + `ls -d /usr/local/lib 2>/dev/null` \ + `ls -d /usr/contrib/lib 2>/dev/null` \ ++ `ls -d /usr/share/tcltk/tcl8.5 2>/dev/null` \ + `ls -d /usr/lib 2>/dev/null` \ + ; do + if test -f "$i/tclConfig.sh" ; then +@@ -223,6 +224,7 @@ + `ls -d ${prefix}/lib 2>/dev/null` \ + `ls -d /usr/local/lib 2>/dev/null` \ + `ls -d /usr/contrib/lib 2>/dev/null` \ ++ `ls -d /usr/share/tcltk/tk8.5 2>/dev/null` \ + `ls -d /usr/lib 2>/dev/null` \ + ; do + if test -f "$i/tkConfig.sh" ; then |