head	1.3;
access;
symbols
	broken-signals-0-57:1.1.0.2
	Release-0-56-last:1.1
	Release-0-57:1.1;
locks; strict;
comment	@# @;


1.3
date	98.06.13.07.49.55;	author saw;	state dead;
branches;
next	1.2;

1.2
date	98.06.13.06.39.32;	author saw;	state Exp;
branches;
next	1.1;

1.1
date	97.02.24.06.11.10;	author morgan;	state Exp;
branches;
next	;


desc
@@


1.3
log
@  - `make release' was rewritten.
  - The traces of RCS tree were eliminated.
@
text
@#!/bin/bash
#
# $Id: md5RCS,v 1.2 1998/06/13 06:39:32 saw Exp $
#
# Created by Andrew G. Morgan (morgan@@linux.kernel.org)
#

MD5SUM=md5sum
CHKFILE1=./.RCSsum
CHKFILE2=./.RCSsum-new

which $MD5SUM > /dev/null
result=$?

if [ -x "$MD5SUM" ] || [ $result -eq 0 ]; then
	rm -f $CHKFILE2
	echo -n "computing md5 checksums for RCS files."
	for x in `cat ../.RCSlist` ; do
		(cd ../.. ; $MD5SUM $x) >> $CHKFILE2
		echo -n "."
	done
	echo
	if [ -f "$CHKFILE1" ]; then
		echo "\
---> Note, since the last \`make RCScheck', the following file(s) have changed:
=============================================================================="
		diff $CHKFILE1 $CHKFILE2
		if [ $? -eq 0 ]; then
			echo "\
---------------------------- Nothing has changed -----------------------------"
		fi
		echo "\
=============================================================================="
	fi
	rm -f "$CHKFILE1"
	mv "$CHKFILE2" "$CHKFILE1"
	chmod 400 "$CHKFILE1"
else
	echo "\
Please install \`$MD5SUM'.
[It is used to check the integrity of this distribution]
---> no RCS check done."
fi
@


1.2
log
@  - utmp_{open,close}_session() were modified to fail gracefully.
  - pam_get_user() abuse was removed from utmp_open_session.
  - wtmp file locking was rewritten.
  - Unnecessary malloc()s were eliminated in utmp_{open,close}_session().
  - More accurate struct utmp clearing was implemented. Glibc had introduced
    additional fields and could do it further.
  - utmp search was rewritten to be more compatible with libc.
  - Protection against unexpected SIGPIPEs was implemented.
  - TODO file was revived.
  - RCS logs were removed.
@
text
@d3 1
a3 1
# $Id: md5RCS,v 1.1 1997/02/24 06:11:10 morgan Exp $
@


1.1
log
@Initial revision
@
text
@d3 1
a3 1
# $Id$
d5 1
a5 3
# $Log$
#
# Created by Andrew G. Morgan (morgan@@physics.ucla.edu)
@
