aboutsummaryrefslogtreecommitdiff
path: root/src/aclocal.m4
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2006-01-18 00:40:07 +0000
committerKen Raeburn <raeburn@mit.edu>2006-01-18 00:40:07 +0000
commit394dfe5764021766d78aad9e363bcf1fcea9c3b2 (patch)
tree595328e988c40d909c59d823921e4b436f467982 /src/aclocal.m4
parent5b34687c8746762678e96de41a85bc7fc7187dbb (diff)
downloadkrb5-394dfe5764021766d78aad9e363bcf1fcea9c3b2.zip
krb5-394dfe5764021766d78aad9e363bcf1fcea9c3b2.tar.gz
krb5-394dfe5764021766d78aad9e363bcf1fcea9c3b2.tar.bz2
* aclocal.m4 (AC_KRB5_TCL_TRYOLD): Include $LIBS in $TCL_LIBS
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17591 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/aclocal.m4')
-rw-r--r--src/aclocal.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index 1803f34..46a70e6 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -1036,23 +1036,23 @@ if test "$with_tcl" != no ; then
if test $tcl_lib = no; then
AC_CHECK_LIB(tcl8.0, Tcl_CreateCommand,
- TCL_LIBS="$TCL_LIBS -ltcl8.0 -lm $DL_LIB"
+ TCL_LIBS="$TCL_LIBS -ltcl8.0 -lm $DL_LIB $LIBS"
tcl_lib=yes,,-lm $DL_LIB)
fi
if test $tcl_lib = no; then
AC_CHECK_LIB(tcl7.6, Tcl_CreateCommand,
- TCL_LIBS="$TCL_LIBS -ltcl7.6 -lm $DL_LIB"
+ TCL_LIBS="$TCL_LIBS -ltcl7.6 -lm $DL_LIB $LIBS"
tcl_lib=yes,,-lm $DL_LIB)
fi
if test $tcl_lib = no; then
AC_CHECK_LIB(tcl7.5, Tcl_CreateCommand,
- TCL_LIBS="$TCL_LIBS -ltcl7.5 -lm $DL_LIB"
+ TCL_LIBS="$TCL_LIBS -ltcl7.5 -lm $DL_LIB $LIBS"
tcl_lib=yes,,-lm $DL_LIB)
fi
if test $tcl_lib = no ; then
AC_CHECK_LIB(tcl, Tcl_CreateCommand,
- TCL_LIBS="$TCL_LIBS -ltcl -lm $DL_LIB"
+ TCL_LIBS="$TCL_LIBS -ltcl -lm $DL_LIB $LIBS"
tcl_lib=yes,,-lm $DL_LIB)
fi