Commit 8bef6890 authored by Marc G. Fournier's avatar Marc G. Fournier

parent 6534444d
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -689,6 +689,7 @@ AC_PROG_YACC ...@@ -689,6 +689,7 @@ AC_PROG_YACC
AC_SUBST(YFLAGS) AC_SUBST(YFLAGS)
AC_CHECK_LIB(z, main)
AC_CHECK_LIB(sfio, main) AC_CHECK_LIB(sfio, main)
AC_CHECK_LIB(ncurses, main, [], [AC_CHECK_LIB(curses, main)]) AC_CHECK_LIB(ncurses, main, [], [AC_CHECK_LIB(curses, main)])
AC_CHECK_LIB(termcap, main) AC_CHECK_LIB(termcap, main)
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* or in config.h afterwards. Of course, if you edit config.h, then your * or in config.h afterwards. Of course, if you edit config.h, then your
* changes will be overwritten the next time you run configure. * changes will be overwritten the next time you run configure.
* *
* $Id: config.h.in,v 1.122 2000/07/02 15:21:18 petere Exp $ * $Id: config.h.in,v 1.123 2000/07/05 17:44:29 scrappy Exp $
*/ */
#ifndef CONFIG_H #ifndef CONFIG_H
...@@ -511,6 +511,9 @@ extern long random(void); ...@@ -511,6 +511,9 @@ extern long random(void);
extern void srandom(unsigned int seed); extern void srandom(unsigned int seed);
#endif #endif
/* Set to 1 if you have libz.a */
#undef HAVE_LIBZ
/* Set to 1 if you have libreadline.a */ /* Set to 1 if you have libreadline.a */
#undef HAVE_LIBREADLINE #undef HAVE_LIBREADLINE
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment