gaim/gaim

1e5118119c76
Parents 73eb7d424cdd
Children 36325fa999ee
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."
  • +3 -1
    configure.ac
  • --- a/configure.ac Sun Mar 26 02:41:06 2006 -0500
    +++ b/configure.ac Sun Mar 26 02:45:35 2006 -0500
    @@ -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"