diff options
author | Russ Allbery <rra@stanford.edu> | 2008-04-20 20:06:36 +0000 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2008-04-20 20:06:36 +0000 |
commit | e3c4e3d446b3e646b79be737b1563b9169afcf0c (patch) | |
tree | 0a0e6cb2178d804da5ca0561330a79f59df45f0e /m4/krb4.m4 | |
parent | 77ce14147857ddda5ad97c2ef068625551da60a5 (diff) |
Fix Autoconf syntax error when probing for libkrb5support. Thanks,
Mike Garrison.
Also update to the latest version of all of the Kerberos Autoconf probes.
Diffstat (limited to 'm4/krb4.m4')
-rw-r--r-- | m4/krb4.m4 | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -17,6 +17,7 @@ dnl dnl Written by Russ Allbery <rra@stanford.edu> dnl Copyright 2005, 2006, 2007, 2008 dnl Board of Trustees, Leland Stanford Jr. University +dnl dnl See LICENSE for licensing terms. dnl Set CPPFLAGS, LDFLAGS, and LIBS to values including the Kerberos v4 @@ -87,7 +88,7 @@ AC_DEFUN([_RRA_LIB_KRB4_MANUAL], [AC_CHECK_LIB([pthread], [pthread_setspecific], [rra_krb4_pthread="-lpthread"])]) AC_CHECK_LIB([krb5support], [krb5int_setspecific], - [rra_krb4_extra="-lkrb5support $rra_krb4_pthread"], + [rra_krb4_extra="-lkrb5support $rra_krb4_pthread"], , [$rra_krb4_pthread])]) AC_CHECK_LIB([krb4], [krb_get_svc_in_tkt], [KRB4_LIBS="-lkrb4 $rra_krb4_extra"], |