[Python-checkins] CVS: python/dist/src configure.in,1.188,1.189

Eric S. Raymond esr@users.sourceforge.net
Tue, 16 Jan 2001 07:01:28 -0800


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv26625

Modified Files:
	configure.in 
Log Message:
Make HAVE_TERMIOS_H and associated config.sh shell variable available
when configure detects the presence of termios.h; later we'll use this
for correct configuration of edline/readline.

Also, fix a bug in acconfig.h -- somebody forgot to add an undef to
cover the LIBNDBM configure symbol, which was preventing autoheader
from working properly.


Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.188
retrieving revision 1.189
diff -C2 -r1.188 -r1.189
*** configure.in	2001/01/15 17:07:21	1.188
--- configure.in	2001/01/16 15:01:26	1.189
***************
*** 407,411 ****
  AC_HEADER_STDC
  AC_CHECK_HEADERS(dlfcn.h fcntl.h limits.h locale.h ncurses.h poll.h pthread.h \
! signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h \
  sys/audioio.h sys/file.h sys/lock.h db_185.h db.h \
  sys/param.h sys/select.h sys/socket.h sys/time.h sys/times.h \
--- 407,411 ----
  AC_HEADER_STDC
  AC_CHECK_HEADERS(dlfcn.h fcntl.h limits.h locale.h ncurses.h poll.h pthread.h \
! signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h termios.h \
  sys/audioio.h sys/file.h sys/lock.h db_185.h db.h \
  sys/param.h sys/select.h sys/socket.h sys/time.h sys/times.h \