bug-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] Kerberos: support -lkrb4 [2/4]


From: Alexey Mahotkin
Subject: [PATCH] Kerberos: support -lkrb4 [2/4]
Date: Wed, 18 Jun 2003 00:23:27 +0400
User-agent: Gnus/5.090006 (Oort Gnus v0.06) XEmacs/21.4 (Common Lisp, i386-debian-linux)


Debian Woody has Kerberos 4 in -lkrb4 instead of -lkrb, so check for
that.


 ChangeLog    |    5 +++++
 config.h.in  |    3 +++
 configure.in |    1 +
 3 files changed, 9 insertions(+)

--- ccvs/ChangeLog~kerberos-libkrb4     Wed Jun 18 00:03:26 2003
+++ ccvs-alexm/ChangeLog        Wed Jun 18 00:10:15 2003
@@ -1,3 +1,8 @@
+2003-06-18  Alexey Mahotkin  <alexm@hsys.msk.ru>
+
+       * configure.in, config.h.in: Debian Woody has -lkrb4, so check for
+       that.
+
 2003-06-17  Alexey Mahotkin  <alexm@hsys.msk.ru>
 
        * configure.in: Compile kerberos4-client.[ch] if needed.
--- ccvs/configure.in~kerberos-libkrb4  Wed Jun 18 00:03:32 2003
+++ ccvs-alexm/configure.in     Wed Jun 18 00:04:44 2003
@@ -409,6 +409,7 @@ if test -n "$krb_h"; then
     test -n "${krb_libdir}" && LDFLAGS="$LDFLAGS -L${krb_libdir}"
     AC_CHECK_LIB(des,printf,[LIBS="${LIBS} -ldes"])
     AC_CHECK_LIB(krb,krb_recvauth)
+    AC_CHECK_LIB(krb4,krb_recvauth)
     LDFLAGS=$hold_ldflags
     if test -n "$krb_incdir"; then
       CPPFLAGS="$CPPFLAGS -I$krb_incdir"
--- ccvs/config.h.in~kerberos-libkrb4   Wed Jun 18 00:05:29 2003
+++ ccvs-alexm/config.h.in      Wed Jun 18 00:06:43 2003
@@ -236,6 +236,9 @@
 /* Define to 1 if you have the `krb' library (-lkrb). */
 #undef HAVE_LIBKRB
 
+/* Define to 1 if you have the `krb4' library (-lkrb4). */
+#undef HAVE_LIBKRB4
+
 /* Define to 1 if you have the `nsl' library (-lnsl). */
 #undef HAVE_LIBNSL
 

_

--alexm




reply via email to

[Prev in Thread] Current Thread [Next in Thread]