Mercurial > emacs
comparison src/config.in @ 52027:7a8f8df10a26
*** empty log message ***
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 23 Jul 2003 09:22:55 +0000 |
parents | 06174ae76b5e |
children | 1360ccf1c443 |
comparison
equal
deleted
inserted
replaced
52026:a1c58b19ec8a | 52027:7a8f8df10a26 |
---|---|
108 #undef HAVE_COFF_H | 108 #undef HAVE_COFF_H |
109 | 109 |
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 |
116 | 119 |
117 /* Define to 1 if you have the declaration of `__sys_siglist', and to 0 if you | 120 /* Define to 1 if you have the declaration of `__sys_siglist', and to 0 if you |
295 /* Define to 1 if you have the `mail' library (-lmail). */ | 298 /* Define to 1 if you have the `mail' library (-lmail). */ |
296 #undef HAVE_LIBMAIL | 299 #undef HAVE_LIBMAIL |
297 | 300 |
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 |
303 | |
304 /* Define to 1 if you have the <libpng/png.h> header file. */ | |
305 #undef HAVE_LIBPNG_PNG_H | |
300 | 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 |
304 /* Define to 1 if you have the resolv library (-lresolv). */ | 310 /* Define to 1 if you have the resolv library (-lresolv). */ |
396 /* Define to 1 if you have the <nlist.h> header file. */ | 402 /* Define to 1 if you have the <nlist.h> header file. */ |
397 #undef HAVE_NLIST_H | 403 #undef HAVE_NLIST_H |
398 | 404 |
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 |
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 | |
401 | 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 |
405 /* Define to 1 if you have the <pty.h> header file. */ | 417 /* Define to 1 if you have the <pty.h> header file. */ |
801 | 813 |
802 /* Define to empty if the keyword `volatile' does not work. Warning: valid | 814 /* Define to empty if the keyword `volatile' does not work. Warning: valid |
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 |
811 #define HAVE_WINDOW_SYSTEM | 821 #define HAVE_WINDOW_SYSTEM |
812 #define MULTI_KBOARD | 822 #define MULTI_KBOARD |
857 | 867 |
858 /* If using GNU, then support inline function declarations. */ | 868 /* If using GNU, then support inline function declarations. */ |
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 |
866 #endif | 876 #endif |
867 | 877 |