comparison lib-src/Makefile.in @ 21397:aa5d46f74b6a

Integrate support for GSS-API authentication, implemented by Kevin L. Mitchel <klmitch@mit.edu>.
author Karl Heuer <kwzh@gnu.org>
date Mon, 06 Apr 1998 22:16:30 +0000
parents ef9a01b67c87
children bfaacbee089a
comparison
equal deleted inserted replaced
21396:fe54b9d8ded1 21397:aa5d46f74b6a
203 CRYPTOLIB = -lcrypto 203 CRYPTOLIB = -lcrypto
204 # endif 204 # endif
205 # ifdef HAVE_LIBCOM_ERR 205 # ifdef HAVE_LIBCOM_ERR
206 COM_ERRLIB = -lcom_err 206 COM_ERRLIB = -lcom_err
207 # endif 207 # endif
208 #endif /* KERBEROS 208 # ifdef HAVE_LIBGSSAPI_KRB5
209 209 GSSAPI_KRB5LIB = -lgssapi_krb5
210 /* If HESIOD is defined, set this to "-lhesiod". */ 210 # endif
211 HESIODLIB= 211 #endif /* KERBEROS */
212 212
213 MOVE_LIBS=$(KRB4LIB) $(DESLIB) $(KRB5LIB) $(CRYPTOLIB) $(COM_ERRLIB) $(HESIODLIB) 213 #ifdef HAVE_LIBGSSAPI
214 GSSAPILIB = -lgssapi
215 #endif
216
217 #ifdef HESIOD
218 HESIODLIB= -lhesiod
219 #endif
220
221 MOVE_LIBS=$(GSSAPI_KRB5LIB) $(GSSAPILIB) $(KRB4LIB) $(DESLIB) $(KRB5LIB) \
222 $(CRYPTOLIB) $(COM_ERRLIB) $(HESIODLIB)
214 223
215 #ifdef HAVE_LIBMAIL 224 #ifdef HAVE_LIBMAIL
216 LIBMAIL=-lmail 225 LIBMAIL=-lmail
217 #endif 226 #endif
218 227