# HG changeset patch
# User Richard Laager <rlaager@wiktel.com>
# Date 1143359135 0
# Node ID 73dc01e3b81a6bdae24c7dfda6ab32e1f3554aeb
# Parent  6034444bbcf5d88edc11a0fb393200f289de7d25
[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>

diff -r 6034444bbcf5 -r 73dc01e3b81a configure.ac
--- 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"