]> code.delx.au - gnu-emacs/blobdiff - src/config.in
(byte-compile-current-file): Don't bind
[gnu-emacs] / src / config.in
index 5f3f5930e398b14f6bbc446122edaef9288c8839..773fb0301c58e08631416ee27c0ce7abf777b12d 100644 (file)
@@ -302,6 +302,8 @@ Boston, MA 02111-1307, USA.  */
 #undef HAVE_INDEX
 #undef HAVE_RINDEX
 #undef HAVE_MMAP
+#undef HAVE_GAI_STRERROR
+#undef HAVE_MKSTEMP
 
 #undef LOCALTIME_CACHE
 #undef HAVE_INET_SOCKETS
@@ -547,3 +549,10 @@ extern char *getenv ();
 
 /* Should we enable expensive run-time checking of data types?  */
 #undef ENABLE_CHECKING
+
+#if defined __GNUC__ && (__GNUC__ > 2 \
+                         || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5))
+#define NO_RETURN      __attribute__ ((__noreturn__))
+#else
+#define NO_RETURN      /* nothing */
+#endif