|
From: Petr S. <pe...@us...> - 2001-02-09 19:59:34
|
Update of /cvsroot/cscope/cscope
In directory usw-pr-cvs1:/tmp/cvs-serv30087
Modified Files:
config.guess config.sub configure.in AUTHORS ChangeLog
acconfig.h
Log Message:
New version number 15.2.b. Darwin support.
Index: config.guess
===================================================================
RCS file: /cvsroot/cscope/cscope/config.guess,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** config.guess 2000/04/27 15:54:13 1.1
--- config.guess 2001/02/09 19:59:59 1.2
***************
*** 854,857 ****
--- 854,860 ----
echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
exit 0 ;;
+ *:Darwin:*:* | *:"Mac OS":*:*)
+ echo `uname -p`-apple-darwin${UNAME_RELEASE}
+ exit 0 ;;
esac
Index: config.sub
===================================================================
RCS file: /cvsroot/cscope/cscope/config.sub,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** config.sub 2000/04/27 15:54:13 1.1
--- config.sub 2001/02/09 19:59:59 1.2
***************
*** 730,734 ****
| -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
| -mingw32* | -linux-gnu* | -uxpv* | -beos* | -rhapsody* \
! | -openstep* | -mpeix* | -oskit*)
# Remember, each alternative MUST END IN *, to match a version number.
;;
--- 730,734 ----
| -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
| -mingw32* | -linux-gnu* | -uxpv* | -beos* | -rhapsody* \
! | -openstep* | -mpeix* | -oskit* | -darwin* )
# Remember, each alternative MUST END IN *, to match a version number.
;;
Index: configure.in
===================================================================
RCS file: /cvsroot/cscope/cscope/configure.in,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** configure.in 2000/11/28 21:26:10 1.11
--- configure.in 2001/02/09 19:59:59 1.12
***************
*** 1,5 ****
dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/basename.c)
! AM_INIT_AUTOMAKE(cscope, 15.1)
AM_CONFIG_HEADER(config.h:config.h.in)
AC_CANONICAL_HOST
--- 1,5 ----
dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/basename.c)
! AM_INIT_AUTOMAKE(cscope, 15.2b)
AM_CONFIG_HEADER(config.h:config.h.in)
AC_CANONICAL_HOST
***************
*** 492,496 ****
AC_DEFINE(Linux)
;;
! netbsd*|freebsd*)
AC_DEFINE(BSD)
;;
--- 492,496 ----
AC_DEFINE(Linux)
;;
! netbsd*|freebsd*|darwin*)
AC_DEFINE(BSD)
;;
Index: AUTHORS
===================================================================
RCS file: /cvsroot/cscope/cscope/AUTHORS,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** AUTHORS 2000/12/11 20:48:18 1.19
--- AUTHORS 2001/02/09 19:59:59 1.20
***************
*** 18,19 ****
--- 18,20 ----
Sascha Blank - FreeBSD support
Bruce Frost - Stability
+ Chuck Marco and Wilfredo Sanchez - Darwin support
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cscope/cscope/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -C2 -r1.60 -r1.61
*** ChangeLog 2001/01/24 16:24:51 1.60
--- ChangeLog 2001/02/09 19:59:59 1.61
***************
*** 1,2 ****
--- 1,4 ----
+ (2001/02/09 - petrs) Updated version number to 15.2b (for beta)
+ (2001/02/09 - chuck & wilfredo) Darwin support
(2001/01/24 - petrs) Replaced new style C comments, i.e. //
(2000/12/12 - petrs) packages/cscope.spec has now no local directory
Index: acconfig.h
===================================================================
RCS file: /cvsroot/cscope/cscope/acconfig.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** acconfig.h 2000/11/20 20:07:24 1.4
--- acconfig.h 2001/02/09 19:59:59 1.5
***************
*** 4,8 ****
#define PACKAGE cscope
! #define VERSION 15.1
/* OS Definitions */
--- 4,8 ----
#define PACKAGE cscope
! #define VERSION 15.2b
/* OS Definitions */
|