Update of /cvsroot/cscope/cscope
In directory usw-pr-cvs1:/tmp/cvs-serv8110
Modified Files:
ChangeLog config.h.in configure configure.in
Log Message:
Fix against Cygwin binmode mounts of source files
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cscope/cscope/ChangeLog,v
retrieving revision 1.108
retrieving revision 1.109
diff -C2 -r1.108 -r1.109
*** ChangeLog 2002/01/02 17:26:34 1.108
--- ChangeLog 2002/01/04 12:11:50 1.109
***************
*** 1,2 ****
--- 1,4 ----
+ (2001/01/04 - broeker) Survive Cygwin "binmode" mounted filesystems by
+ explicitly forcing text mode for source files.
(2002/01/02 - broeker) Updated files supplied or generated by automake to
version 1.4-p5, the current recommended version in the
Index: config.h.in
===================================================================
RCS file: /cvsroot/cscope/cscope/config.h.in,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** config.h.in 2001/09/27 12:41:00 1.10
--- config.h.in 2002/01/04 12:11:50 1.11
***************
*** 58,61 ****
--- 58,64 ----
#undef USING_LEX
+ /* Define if you have the _setmode function. */
+ #undef HAVE__SETMODE
+
/* Define if you have the fixkeypad function. */
#undef HAVE_FIXKEYPAD
***************
*** 75,78 ****
--- 78,84 ----
/* Define if you have the regcomp function. */
#undef HAVE_REGCOMP
+
+ /* Define if you have the setmode function. */
+ #undef HAVE_SETMODE
/* Define if you have the snprintf function. */
Index: configure
===================================================================
RCS file: /cvsroot/cscope/cscope/configure,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** configure 2001/09/27 12:41:00 1.15
--- configure 2002/01/04 12:11:50 1.16
***************
*** 2406,2410 ****
fi
! for ac_func in strchr memcpy memset
do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
--- 2406,2410 ----
fi
! for ac_func in strchr memcpy memset setmode _setmode
do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
Index: configure.in
===================================================================
RCS file: /cvsroot/cscope/cscope/configure.in,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** configure.in 2001/09/27 12:38:18 1.21
--- configure.in 2002/01/04 12:11:50 1.22
***************
*** 481,485 ****
AC_HEADER_DIRENT
AC_HEADER_STDC
! AC_CHECK_FUNCS(strchr memcpy memset)
AC_CHECK_HEADERS(fcntl.h sys/window.h sys/termios.h unistd.h)
--- 481,485 ----
AC_HEADER_DIRENT
AC_HEADER_STDC
! AC_CHECK_FUNCS(strchr memcpy memset setmode _setmode)
AC_CHECK_HEADERS(fcntl.h sys/window.h sys/termios.h unistd.h)
|