190b6cd563ef52c232a6d60a3d50a205b4c848a7
[util-vserver.git] / m4 / ensc_changelog.m4
1 dnl $Id: ensc_changelog.m4,v 1.2 2003/11/04 01:31:56 ensc Exp $
2
3 dnl Copyright (C) 2002 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 dnl  
5 dnl This program is free software; you can redistribute it and/or modify
6 dnl it under the terms of the GNU General Public License as published by
7 dnl the Free Software Foundation; version 2 of the License.
8 dnl  
9 dnl This program is distributed in the hope that it will be useful,
10 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 dnl GNU General Public License for more details.
13 dnl  
14 dnl You should have received a copy of the GNU General Public License
15 dnl along with this program; if not, write to the Free Software
16 dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18 dnl Usage: ENSC_CHANGELOG(<CVS_TAG>)
19
20 AC_DEFUN([ENSC_CHANGELOG],
21 [
22         if test x"$1" != x; then
23                 AC_SUBST(CVS2CL_TAG, ['-F $1'])
24         fi
25
26         AC_CHECK_PROGS(CVS2CL, [cvs2cl])
27         AM_CONDITIONAL(HAVE_CVS2CL,  [test x"$CVS2CL" != x])
28
29         AC_CHECK_PROGS(RCS2LOG, [rcs2log])
30         AM_CONDITIONAL(HAVE_RCS2LOG,  [test x"$RCS2LOG" != x])
31 ])