|
From: Hans-Bernhard B. <br...@us...> - 2002-03-13 20:39:19
|
Update of /cvsroot/cscope/cscope
In directory usw-pr-cvs1:/tmp/cvs-serv9016
Modified Files:
ChangeLog configure.in configure
Log Message:
Call AC_PREREQ in configure.in to help Cygwin build correctly
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cscope/cscope/ChangeLog,v
retrieving revision 1.111
retrieving revision 1.112
diff -C2 -r1.111 -r1.112
*** ChangeLog 13 Mar 2002 18:54:40 -0000 1.111
--- ChangeLog 13 Mar 2002 20:39:13 -0000 1.112
***************
*** 1,2 ****
--- 1,4 ----
+ (2002/03/13 - broeker) Add AC_PREREQ() call to configure.in. Enables Cygwin
+ automagic hack to call the right autoconf for us.
(2002/03/13 - broeker) Replace all references to manpage 'regcmp(3X)' in
messages and comments by regcomp(3), which is what
Index: configure.in
===================================================================
RCS file: /cvsroot/cscope/cscope/configure.in,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -r1.22 -r1.23
*** configure.in 4 Jan 2002 12:11:50 -0000 1.22
--- configure.in 13 Mar 2002 20:39:13 -0000 1.23
***************
*** 3,6 ****
--- 3,7 ----
AM_INIT_AUTOMAKE(cscope, 16.0a)
AM_CONFIG_HEADER(config.h:config.h.in)
+ AC_PREREQ(2.13)
AC_CANONICAL_HOST
Index: configure
===================================================================
RCS file: /cvsroot/cscope/cscope/configure,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** configure 4 Jan 2002 12:11:50 -0000 1.16
--- configure 13 Mar 2002 20:39:13 -0000 1.17
***************
*** 798,801 ****
--- 798,802 ----
+
# Make sure we can run config.sub.
if ${CONFIG_SHELL-/bin/sh} $ac_config_sub sun4 >/dev/null 2>&1; then :
***************
*** 804,808 ****
echo $ac_n "checking host system type""... $ac_c" 1>&6
[...1071 lines suppressed...]
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
cat > conftest.$ac_ext <<EOF
! #line 2785 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
***************
*** 2804,2808 ****
; return 0; }
EOF
! if { (eval echo configure:2807: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest*
eval "ac_cv_func_$ac_func=yes"
--- 2805,2809 ----
; return 0; }
EOF
! if { (eval echo configure:2808: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest*
eval "ac_cv_func_$ac_func=yes"
|