From: Hans-Bernhard B. <br...@us...> - 2001-06-28 15:12:38
|
Update of /cvsroot/cscope/cscope In directory usw-pr-cvs1:/tmp/cvs-serv15620 Modified Files: ChangeLog config.h.in configure configure.in Log Message: Test for presence of <sys/termios.h> Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.79 retrieving revision 1.80 diff -C2 -r1.79 -r1.80 *** ChangeLog 2001/06/27 18:07:13 1.79 --- ChangeLog 2001/06/28 15:12:35 1.80 *************** *** 1,2 **** --- 1,4 ---- + (2001/06/28 - broeker) Add test for existence of <sys/termios.h> header, + to protect platforms that don't have it. (2001/06/27 - broeker) Yet another set of automake/autoconf changes. Regenerated auto* files checked in, too. We are Index: config.h.in =================================================================== RCS file: /cvsroot/cscope/cscope/config.h.in,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** config.h.in 2001/06/27 16:42:25 1.7 --- config.h.in 2001/06/28 15:12:35 1.8 *************** *** 91,94 **** --- 91,97 ---- #undef HAVE_SYS_NDIR_H + /* Define if you have the <sys/termios.h> header file. */ + #undef HAVE_SYS_TERMIOS_H + /* Define if you have the <sys/window.h> header file. */ #undef HAVE_SYS_WINDOW_H Index: configure =================================================================== RCS file: /cvsroot/cscope/cscope/configure,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** configure 2001/06/27 16:42:25 1.10 --- configure 2001/06/28 15:12:35 1.11 *************** *** 2358,2362 **** fi ! for ac_hdr in fcntl.h sys/window.h unistd.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` --- 2358,2362 ---- fi ! for ac_hdr in fcntl.h sys/window.h sys/termios.h unistd.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` Index: configure.in =================================================================== RCS file: /cvsroot/cscope/cscope/configure.in,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** configure.in 2001/06/27 15:51:26 1.16 --- configure.in 2001/06/28 15:12:35 1.17 *************** *** 477,481 **** AC_HEADER_DIRENT AC_HEADER_STDC ! AC_CHECK_HEADERS(fcntl.h sys/window.h unistd.h) dnl Checks for typedefs, structures, and compiler characteristics. --- 477,481 ---- AC_HEADER_DIRENT AC_HEADER_STDC ! AC_CHECK_HEADERS(fcntl.h sys/window.h sys/termios.h unistd.h) dnl Checks for typedefs, structures, and compiler characteristics. |