view make-check @ 38:8e972daaeab9 noffle

[svn] Applied patch from Jim Hague: - Forget cached group info when group database closed. - Added list of 'forbidden' newsgroup specs. - Fixed problem with article numbering if the overview file empties. - Changed %i to %d in sscanfs (%i interprets leading zeros as octal numbers) - New groups now always start numbering at article 1. - Record newsgroup posting status. Enforce it at posting time. Added --modify - Added group deletion. - Added wildmat code taken from INN
author enz
date Fri, 05 May 2000 08:23:15 +0100
parents 04124a4423d4
children
line wrap: on
line source

#!/bin/bash

if grep '^CFLAGS.*DEBUG' Makefile ; then
	echo "Debugging options are on in Makefile"
	exit -1
fi

if grep // *.[ch] ; then
	echo "Failed: Source contains C++ style comments"
	exit -1
fi

if grep strncpy *.[ch] ; then
	echo "strncpy may result in unterminated strings."
	echo "Use Util_copyString"
	exit -1
fi

if grep XXX *.[ch] ; then
	echo "Source contains XXX marker (personnally used)"
	exit -1
fi

if grep -i "since version" CHANGELOG.html ; then
	echo "Warning: CHANGELOG.html should mention new version"
	echo "Continue anyway? (y/n)"
	read a
	if test "$a" != "j" -a "$a" != "J"; then exit -1; fi
fi

exit 0