mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-19 07:13:40 +08:00
975c2886ba
* Makefile.in: Add CYGNUS LOCAL comment. * acconfig.h: Add missing defines. * config.h.bot: Add missing content. * configure, config.h.in: Regenerated. config.h.in is a generated file, but the readline distribution checked in could not regenerate this. This set of changes fixes that.
23 lines
581 B
Plaintext
23 lines
581 B
Plaintext
/* config.h.bot */
|
|
/* modify settings or make new ones based on what autoconf tells us. */
|
|
|
|
/* Ultrix botches type-ahead when switching from canonical to
|
|
non-canonical mode, at least through version 4.3 */
|
|
#if !defined (HAVE_TERMIOS_H) || !defined (HAVE_TCGETATTR) || defined (ultrix)
|
|
# define TERMIOS_MISSING
|
|
#endif
|
|
|
|
#if defined (STRCOLL_BROKEN)
|
|
# undef HAVE_STRCOLL
|
|
#endif
|
|
|
|
#if defined (__STDC__) && defined (HAVE_STDARG_H)
|
|
# define PREFER_STDARG
|
|
# define USE_VARARGS
|
|
#else
|
|
# if defined (HAVE_VARARGS_H)
|
|
# define PREFER_VARARGS
|
|
# define USE_VARARGS
|
|
# endif
|
|
#endif
|