]> git.eshelyaron.com Git - emacs.git/commitdiff
(MOVE_LIBS): Use conditionals on
authorRichard M. Stallman <rms@gnu.org>
Mon, 26 Aug 1996 21:33:49 +0000 (21:33 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 26 Aug 1996 21:33:49 +0000 (21:33 +0000)
KERBEROS, HAVE_LIBKRB and HAVE_LIBDES to set it up.

lib-src/Makefile.in

index f05f92c044173869e1ad9837e595abb1bcba996a..a3579754283c8a744aee082010f846c14af489c1 100644 (file)
@@ -123,14 +123,6 @@ SOURCES = COPYING ChangeLog Makefile.in README emacs.csh \
 #                      mail host for the site.
 MOVE_FLAGS=
 
-# Additional libraries for movemail:
-# For KERBEROS
-# MOVE_LIBS= -lkrb -ldes -lcom_err
-# For KERBEROS + KRB5
-# MOVE_LIBS= -lkrb5 -lcrypto -lisode -lcom_err
-# Add "-lhesiod" if HESIOD is defined.
-MOVE_LIBS=
-
 # ========================== start of cpp stuff =======================
 /* From here on, comments must be done in C syntax.  */
 
@@ -187,6 +179,19 @@ MOVE_LIBS=
 #define BLESSMAIL
 #endif
 
+#if defined (KERBEROS) && defined (HAVE_LIBKRB) && defined (HAVE_LIBDES)
+MOVE_LIBS= -lkrb -ldes -lcom_err
+/* For KERBEROS + KRB5
+    MOVE_LIBS= -lkrb5 -lcrypto -lisode -lcom_err
+    Add "-lhesiod" if HESIOD is defined.  */
+#else
+#if defined (KERBEROS) && defined (HAVE_LIBKRB)
+MOVE_LIBS= -lkrb -lcom_err
+#else
+MOVE_LIBS=
+#endif
+#endif
+
 LOADLIBES=LIBS_SYSTEM LIBS_MACHINE LIB_STANDARD_LIBSRC
 
 /* We need to #define emacs to get the right versions of some files.