From: Hans-Bernhard B. <br...@us...> - 2004-02-24 15:27:38
|
Update of /cvsroot/cscope/cscope In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3372 Modified Files: ChangeLog config.h.in configure configure.in Log Message: Accomodate HP/Compaq's nsr-tandem-nsk platform. Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.133 retrieving revision 1.134 diff -C2 -r1.133 -r1.134 *** ChangeLog 14 Feb 2004 18:25:15 -0000 1.133 --- ChangeLog 24 Feb 2004 15:13:20 -0000 1.134 *************** *** 1,2 **** --- 1,10 ---- + 2004-02-24 Hans-Bernhard Broeker <br...@ph...> + + * configure.in (AC_CHECK_HEADERS): Added check for NSK-Tandem + special magic header file <floss.h>. + + * src/global.h [HAVE_FLOSS_H]: Added #include <floss.h> if it + exists. + 2004-02-14 Hans-Bernhard Broeker <br...@ph...> Index: config.h.in =================================================================== RCS file: /cvsroot/cscope/cscope/config.h.in,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** config.h.in 12 Feb 2004 18:14:04 -0000 1.16 --- config.h.in 24 Feb 2004 15:13:20 -0000 1.17 *************** *** 17,20 **** --- 17,23 ---- #undef HAVE_FIXKEYPAD + /* Define to 1 if you have the <floss.h> header file. */ + #undef HAVE_FLOSS_H + /* Define to 1 if you have the `getcwd' function. */ #undef HAVE_GETCWD Index: configure =================================================================== RCS file: /cvsroot/cscope/cscope/configure,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** configure 12 Feb 2004 18:14:04 -0000 1.23 --- configure 24 Feb 2004 15:13:20 -0000 1.24 *************** *** 5081,5085 **** ! for ac_header in fcntl.h sys/window.h sys/termios.h unistd.h signal.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` --- 5081,5086 ---- ! ! for ac_header in fcntl.h sys/window.h sys/termios.h unistd.h signal.h floss.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` Index: configure.in =================================================================== RCS file: /cvsroot/cscope/cscope/configure.in,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -r1.30 -r1.31 *** configure.in 12 Feb 2004 18:13:12 -0000 1.30 --- configure.in 24 Feb 2004 15:13:21 -0000 1.31 *************** *** 382,386 **** AC_HEADER_DIRENT AC_HEADER_STDC ! AC_CHECK_HEADERS(fcntl.h sys/window.h sys/termios.h unistd.h signal.h) dnl Checks for typedefs, structures, and compiler characteristics. --- 382,386 ---- AC_HEADER_DIRENT AC_HEADER_STDC ! AC_CHECK_HEADERS(fcntl.h sys/window.h sys/termios.h unistd.h signal.h floss.h) dnl Checks for typedefs, structures, and compiler characteristics. |