(unchain_marker): Allow differing buffers
[bpt/emacs.git] / src / config.in
index fd4da2c..6cf3e1c 100644 (file)
@@ -64,9 +64,11 @@ and this notice must be preserved on all copies.  */
 /* Define if netdb.h declares h_errno.  */
 #undef HAVE_H_ERRNO
 
+/* Nowadays we have frame objects even if we support only ASCII terminals.  */
+#define MULTI_FRAME
+
 /* If we're using any sort of window system, define some consequences.  */
 #ifdef HAVE_X_WINDOWS
-#define MULTI_FRAME
 #define HAVE_FACES
 #define HAVE_MOUSE
 #endif
@@ -90,11 +92,23 @@ and this notice must be preserved on all copies.  */
    that & in the full name stands for the login id.  */
 #undef AMPERSAND_FULL_NAME
 
+/* Things set by --with options in the configure script.  */
+
+/* Define to support POP mail retrieval.  */
+#undef MAIL_USE_POP
+
+/* Define to support Kerberos-authenticated POP mail retrieval.  */
+#undef KERBEROS
+
+/* Define to support using a Hesiod database to find the POP server.  */
+#undef HESIOD
+
 /* Some things figured out by the configure script, grouped as they are in
    configure.in.  */
 #ifndef _ALL_SOURCE  /* suppress warning if this is pre-defined */
 #undef _ALL_SOURCE
 #endif
+#undef HAVE_SYS_SELECT_H
 #undef HAVE_SYS_TIMEB_H
 #undef HAVE_SYS_TIME_H
 #undef HAVE_UNISTD_H
@@ -220,6 +234,12 @@ typedef unsigned long EMACS_UINT;
 #endif /* not NO_SHORTNAMES */
 #endif /* SHORTNAMES */
 
+/* If no remapping takes place, static variables cannot be dumped as
+   pure, so don't worry about the `static' keyword. */
+#ifdef NO_REMAP
+#undef static
+#endif
+
 /* Define `subprocesses' should be defined if you want to
    have code for asynchronous subprocesses
    (as used in M-x compile and M-x shell).