[project @ 2001-03-30 05:02:31 by qrczak]
authorqrczak <unknown>
Fri, 30 Mar 2001 05:02:32 +0000 (05:02 +0000)
committerqrczak <unknown>
Fri, 30 Mar 2001 05:02:32 +0000 (05:02 +0000)
Replace Readline with a more complete version.
Process .hsc files in hslibs.

acconfig.h
configure.in
mk/config.h.in

index 4e9c8de..b4bbc07 100644 (file)
 /* Define if readline plus any additional libs needed for it exist */
 #undef HAVE_READLINE_LIBS
 
+/* Define if readline has version >= 4.x. */
+#undef HAVE_READLINE_4
+
 /* Define if time.h or sys/time.h define the timezone variable */
 #undef HAVE_TIMEZONE
 
index 2a9bc24..e00ce22 100644 (file)
@@ -847,6 +847,14 @@ else
 fi
 AC_SUBST(LibsReadline)
 
+if test "$HaveLibReadline"; then
+  AC_CHECK_LIB(readline, rl_erase_empty_line,
+    [AC_DEFINE(HAVE_READLINE_4, 1)],
+    [AC_DEFINE(HAVE_READLINE_4, 0)])
+else
+  AC_DEFINE(HAVE_READLINE_4, 0)
+fi
+
 dnl ** check for math library
 FPTOOLS_CHECK_LIBM()
 AC_SUBST(LIBM)
index 67084c7..044ca4c 100644 (file)
 /* Define if readline plus any additional libs needed for it exist */
 #undef HAVE_READLINE_LIBS
 
+/* Define if readline has version >= 4.x. */
+#undef HAVE_READLINE_4
+
 /* Define if time.h or sys/time.h define the timezone variable */
 #undef HAVE_TIMEZONE