diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-08-09 10:06:15 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-08-09 10:06:15 +0000 |
commit | b55507c8a751ed69b1d74069cca231608884de0c (patch) | |
tree | 828b8b345f251c19e5ef8f69ef9449a086e44b6d /configure.ac | |
parent | 827a805966e101edee6f05af75d13279f0ad1add (diff) | |
download | curl-b55507c8a751ed69b1d74069cca231608884de0c.tar.gz |
the krb4 stuff needs -lcom_err to link now, for some odd reason. This is
possibly only on some platforms, but it happens on my Solaris 2.7 box and I
don't know anyone else that regularly build curl with krb4 support.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 230c9da68..8367b5487 100644 --- a/configure.ac +++ b/configure.ac @@ -560,7 +560,7 @@ then AC_CHECK_HEADERS(krb.h) dnl we found the required libraries, add to LIBS - LIBS="-lkrb -ldes $LIBS" + LIBS="-lkrb -lcom_err -ldes $LIBS" dnl Check for function krb_get_our_ip_for_realm dnl this is needed for NAT networks |