Mercurial > pidgin
changeset 13569:73dc01e3b81a
[gaim-migrate @ 15948]
SF Patch #1454060 from John Bailey (rekkanoryo):
"On Fedora Core 4 x86_64, tcl and tk are not detected
during configure. This is due to Fedora placing
tclConfig.sh and tkConfig.sh in /usr/lib64 instead of
/usr/lib. This patch remedies that."
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sun, 26 Mar 2006 07:45:35 +0000 |
parents | 6034444bbcf5 |
children | 41e4b22c0afb |
files | configure.ac |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure.ac Sun Mar 26 07:41:06 2006 +0000 +++ b/configure.ac Sun Mar 26 07:45:35 2006 +0000 @@ -1415,6 +1415,7 @@ AC_MSG_CHECKING([for tclConfig.sh]) TCLCONFIG=no TCLCONFIGDIRS="/usr/lib \ + /usr/lib64 \ /usr/lib/tcl8.4 \ /usr/lib/tcl8.3 \ /usr/lib/tcl8.2 \ @@ -1472,7 +1473,8 @@ AC_MSG_CHECKING([for tkConfig.sh]) TKCONFIG=no TKCONFIGDIRS="/usr/lib \ - /usr/lib/tk8.4 \ + /usr/lib64 \ + /usr/lib/tk8.4 \ /usr/lib/tk8.3 \ /usr/lib/tk8.2 \ /usr/local/lib"