aboutsummaryrefslogtreecommitdiff
path: root/readline/config.h.bot
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>1998-12-25 00:35:35 +0000
committerJason Molenda <jmolenda@apple.com>1998-12-25 00:35:35 +0000
commit975c2886bae84e9364a5f906a856ccc41d5046d3 (patch)
tree651b863535258951c9f36fbce933a4199fe58f13 /readline/config.h.bot
parent35d6075ac268663c9fa2a811f2d4814d8c34957d (diff)
downloadfsf-binutils-gdb-975c2886bae84e9364a5f906a856ccc41d5046d3.zip
fsf-binutils-gdb-975c2886bae84e9364a5f906a856ccc41d5046d3.tar.gz
fsf-binutils-gdb-975c2886bae84e9364a5f906a856ccc41d5046d3.tar.bz2
1998-12-24 Jason Molenda (jsm@bugshack.cygnus.com)
* 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.
Diffstat (limited to 'readline/config.h.bot')
-rw-r--r--readline/config.h.bot22
1 files changed, 22 insertions, 0 deletions
diff --git a/readline/config.h.bot b/readline/config.h.bot
new file mode 100644
index 0000000..d7a6dc4
--- /dev/null
+++ b/readline/config.h.bot
@@ -0,0 +1,22 @@
+/* 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