(rmail-edit-current-message, rmail-cease-edit):
[bpt/emacs.git] / src / config.in
index 17162ca..782a316 100644 (file)
@@ -112,6 +112,8 @@ Boston, MA 02111-1307, USA.  */
 #undef KERBEROS
 /* Define to use Kerberos 5 instead of Kerberos 4 */
 #undef KERBEROS5
+/* Define to support GSS-API in addition to (or instead of) Kerberos */
+#undef GSSAPI
 
 /* Define to support using a Hesiod database to find the POP server.  */
 #undef HESIOD
@@ -160,6 +162,11 @@ Boston, MA 02111-1307, USA.  */
 #undef HAVE_KERBEROS_KRB_H
 #undef HAVE_COM_ERR_H
 
+/* GSS-API libraries and headers */
+#undef HAVE_LIBGSSAPI_KRB5
+#undef HAVE_LIBGSSAPI
+#undef HAVE_GSSAPI_H
+
 /* Mail-file locking */
 #undef HAVE_LIBMAIL
 #undef HAVE_MAILLOCK_H
@@ -348,7 +355,8 @@ Boston, MA 02111-1307, USA.  */
 #ifdef emacs /* Don't do this for lib-src.  */
 /* Tell regex.c to use a type compatible with Emacs.  */
 #define RE_TRANSLATE_TYPE Lisp_Object
-#define RE_TRANSLATE(TBL, C) char_table_translate (TBL, C)
+#define RE_TRANSLATE(TBL, C) CHAR_TABLE_TRANSLATE (TBL, C)
+#define RE_TRANSLATE_P(TBL) (XFASTINT (TBL) != 0)
 #endif
 
 /* Avoid link-time collision with system mktime if we will use our own.  */
@@ -405,6 +413,9 @@ extern char *getenv ();
 #define BITS_PER_LONG 32
 #endif
 
+/* Don't include <string.h> during configure.  */
+#ifndef NOT_C_CODE
 #ifdef HAVE_STRING_H
 #include "string.h"
 #endif
+#endif