view version.sh @ 3319:66134af21278

fixed to check that SNDCTL_DSP_CHANNELS actually grants the requested number of channels
author steve
date Tue, 04 Dec 2001 17:54:08 +0000
parents 97c6bfbcb7a7
children d31a4f29aed1
line wrap: on
line source

#!/bin/sh

last_cvs_update=`date -r CVS/Entries +%y%m%d-%H:%M 2>/dev/null`
if [ $? -ne 0 ]; then
	# probably no gnu date installed(?), use current date
	last_cvs_update=`date +%y%m%d-%H:%M`
fi
cc=`cat config.mak |grep CC | cut -d '=' -f 2`
cc_version=`${cc} --version`

echo "#define VERSION \"CVS-${last_cvs_update}${cc}-${cc_version} \"" >version.h