From: Hans-Bernhard B. <br...@us...> - 2001-09-27 12:38:22
|
Update of /cvsroot/cscope/cscope In directory usw-pr-cvs1:/tmp/cvs-serv28743 Modified Files: ChangeLog configure.in Log Message: Use autoconf to detect and use Cygwin's -lregex Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.101 retrieving revision 1.102 diff -C2 -r1.101 -r1.102 *** ChangeLog 2001/09/13 16:45:30 1.101 --- ChangeLog 2001/09/27 12:38:18 1.102 *************** *** 1,2 **** --- 1,4 ---- + (2001/09/27 - broeker) Added autoconf test to use Cygwin's separate + -lregex. The regcomp() in libc is not what we want. (2001/09/13 - broeker) Move chunk for malformed CPP directives further down, so it won't incorrectly eat up #else or #endif directives. Index: configure.in =================================================================== RCS file: /cvsroot/cscope/cscope/configure.in,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -r1.20 -r1.21 *** configure.in 2001/07/05 14:31:00 1.20 --- configure.in 2001/09/27 12:38:18 1.21 *************** *** 474,477 **** --- 474,481 ---- dnl AC_CHECK_LIB(curses, main) + dnl Cygwin is a bit peculiar: it has the regcomp() functions, but in a + dnl separate library, so we have to check for that: + AC_CHECK_LIB(regex, regcomp) + dnl Checks for header files. AC_HEADER_DIRENT |