diff options
author | Gerd Moellmann <gerd@gnu.org> | 1999-07-21 21:43:52 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 1999-07-21 21:43:52 +0000 |
commit | 43c70fcf91e4ba765ee4092071305c1063aee3b7 (patch) | |
tree | ba47ff5a2a6efb4e8ee0ce7e4f8e0d4fc96c8c2d /src | |
parent | 5f5c8ee54adcf263da9c3dcc1db243b26724c04d (diff) | |
download | emacs-43c70fcf91e4ba765ee4092071305c1063aee3b7.tar.gz |
(HAVE_PNG): New.
(HAVE_SOUND): New.
(HAVE_MACHINE_SOUNDCARD_H): New.
(HAVE_SYS_SOUNDCARD_H): New.
(USE_TOOLKIT_SCROLL_BARS): New.
(HAVE_XAW3D): New.
(HAVE_FACES): Removed.
(HAVE_TIFF): Added.
(HAVE_JPEG): Added.
(HAVE_XPM): New.
Diffstat (limited to 'src')
-rw-r--r-- | src/config.in | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/src/config.in b/src/config.in index 0d2b9ecbef3..01195412f1d 100644 --- a/src/config.in +++ b/src/config.in @@ -72,6 +72,27 @@ Boston, MA 02111-1307, USA. */ /* Define if we have the X11R5 or newer version of Xlib. */ #undef HAVE_X11R5 +/* Define if we have the XPM libary. */ +#undef HAVE_XPM + +/* Define if we have the PNG library. */ +#undef HAVE_PNG + +/* Define if we have the JPEG library. */ +#undef HAVE_JPEG + +/* Define if we have the TIFF library. */ +#undef HAVE_TIFF + +/* Define if we have the GIF library. */ +#undef HAVE_GIF + +/* Define if libXaw3d is available. */ +#undef HAVE_XAW3D + +/* Define if we should use toolkit scroll bars. */ +#undef USE_TOOLKIT_SCROLL_BARS + /* Define if netdb.h declares h_errno. */ #undef HAVE_H_ERRNO @@ -79,7 +100,6 @@ Boston, MA 02111-1307, USA. */ #ifdef HAVE_X_WINDOWS #define HAVE_WINDOW_SYSTEM #define MULTI_KBOARD -#define HAVE_FACES #define HAVE_MOUSE #endif @@ -118,11 +138,24 @@ Boston, MA 02111-1307, USA. */ /* Define to support using a Hesiod database to find the POP server. */ #undef HESIOD +/* Header for Voxware or PCM sound card driver. */ +#undef HAVE_MACHINE_SOUNDCARD_H +#undef HAVE_SYS_SOUNDCARD_H + +/* Define HAVE_SOUND if we have sound support. */ +#ifdef HAVE_MACHINE_SOUNDCARD_H +#define HAVE_SOUND 1 +#endif +#ifdef HAVE_SYS_SOUNDCARD_H +#define HAVE_SOUND 1 +#endif + /* 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 |