diff options
author | Jim McDonough <jmcd@samba.org> | 2003-05-08 17:02:13 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2003-05-08 17:02:13 +0000 |
commit | 1c84123026334a69a7a0d95be747c981ff0ece09 (patch) | |
tree | 324b02ac893063595731b5523bb16bd3b9dfd952 | |
parent | 7f0740b7c044ebc2c0720c2eb28d4a748cb86875 (diff) | |
download | samba-1c84123026334a69a7a0d95be747c981ff0ece09.tar.gz samba-1c84123026334a69a7a0d95be747c981ff0ece09.tar.bz2 samba-1c84123026334a69a7a0d95be747c981ff0ece09.zip |
Hopefully re-enable building heimdal. It needs -lresolv included in LIBS
to link during configure checks.
(This used to be commit 7af282e7ff9c2cccfab97130dc66515a4852c25f)
-rw-r--r-- | source3/configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in index 18284c5c15..ba9b485df2 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2176,6 +2176,7 @@ fi AC_CHECK_LIB(crypto, des_set_key, [LIBS="$LIBS -lcrypto"]) AC_CHECK_LIB(asn1, copy_Authenticator, [LIBS="$LIBS -lasn1"]) AC_CHECK_LIB(roken, roken_getaddrinfo_hostspec, [LIBS="$LIBS -lroken"]) + AC_CHECK_LIB(resolv, dn_expand, [LIBS="$LIBS -lresolv"]) # Heimdal checks. On static Heimdal gssapi must be linked before krb5. AC_CHECK_LIB(gssapi, gss_display_status, [LIBS="$LIBS -lgssapi -lkrb5"; AC_DEFINE(HAVE_GSSAPI,1,[Whether GSSAPI is available])]) |