aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2003-07-23 09:22:55 +0000
committerDave Love2003-07-23 09:22:55 +0000
commit690615f7aafb533cdccd0acc822d24c960bc0852 (patch)
tree74b89c0f09bc126583ce5a37882b42866b734bd8 /src
parent8d11b45098f6adc5165ca9a397075d40cda145f9 (diff)
downloademacs-690615f7aafb533cdccd0acc822d24c960bc0852.tar.gz
emacs-690615f7aafb533cdccd0acc822d24c960bc0852.zip
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/config.in16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/config.in b/src/config.in
index 32f4e0232c4..548210e80b4 100644
--- a/src/config.in
+++ b/src/config.in
@@ -110,6 +110,9 @@ Boston, MA 02111-1307, USA. */
110/* Define to 1 if you have the <com_err.h> header file. */ 110/* Define to 1 if you have the <com_err.h> header file. */
111#undef HAVE_COM_ERR_H 111#undef HAVE_COM_ERR_H
112 112
113/* Define to 1 if you have /usr/lib/crti.o. */
114#undef HAVE_CRTIN
115
113/* Define to 1 if you have the declaration of `sys_siglist', and to 0 if you 116/* Define to 1 if you have the declaration of `sys_siglist', and to 0 if you
114 don't. */ 117 don't. */
115#undef HAVE_DECL_SYS_SIGLIST 118#undef HAVE_DECL_SYS_SIGLIST
@@ -298,6 +301,9 @@ Boston, MA 02111-1307, USA. */
298/* Define to 1 if you have the `ncurses' library (-lncurses). */ 301/* Define to 1 if you have the `ncurses' library (-lncurses). */
299#undef HAVE_LIBNCURSES 302#undef HAVE_LIBNCURSES
300 303
304/* Define to 1 if you have the <libpng/png.h> header file. */
305#undef HAVE_LIBPNG_PNG_H
306
301/* Define to 1 if you have the `pthreads' library (-lpthreads). */ 307/* Define to 1 if you have the `pthreads' library (-lpthreads). */
302#undef HAVE_LIBPTHREADS 308#undef HAVE_LIBPTHREADS
303 309
@@ -399,6 +405,12 @@ Boston, MA 02111-1307, USA. */
399/* Define to 1 if you have the png library (-lpng). */ 405/* Define to 1 if you have the png library (-lpng). */
400#undef HAVE_PNG 406#undef HAVE_PNG
401 407
408/* Define to 1 if you have the <png.h> header file. */
409#undef HAVE_PNG_H
410
411/* Define to 1 if you have the `posix_memalign' function. */
412#undef HAVE_POSIX_MEMALIGN
413
402/* Define to 1 if you have the `pstat_getdynamic' function. */ 414/* Define to 1 if you have the `pstat_getdynamic' function. */
403#undef HAVE_PSTAT_GETDYNAMIC 415#undef HAVE_PSTAT_GETDYNAMIC
404 416
@@ -803,8 +815,6 @@ Boston, MA 02111-1307, USA. */
803 code using `volatile' can become incorrect without. Disable with care. */ 815 code using `volatile' can become incorrect without. Disable with care. */
804#undef volatile 816#undef volatile
805 817
806/* Define if we should use crti.o and crtn.o. */
807#undef HAVE_CRTIN
808 818
809/* If we're using any sort of window system, define some consequences. */ 819/* If we're using any sort of window system, define some consequences. */
810#ifdef HAVE_X_WINDOWS 820#ifdef HAVE_X_WINDOWS
@@ -859,7 +869,7 @@ Boston, MA 02111-1307, USA. */
859/* Don't try to switch on inline handling as detected by AC_C_INLINE 869/* Don't try to switch on inline handling as detected by AC_C_INLINE
860 generally, because even if non-gcc compilers accept `inline', they 870 generally, because even if non-gcc compilers accept `inline', they
861 may reject `extern inline'. */ 871 may reject `extern inline'. */
862#if defined (__GNUC__) && defined (OPTIMIZE) 872#ifdef __GNUC__
863#define INLINE __inline__ 873#define INLINE __inline__
864#else 874#else
865#define INLINE 875#define INLINE