summaryrefslogtreecommitdiff
path: root/fixvers
blob: 0faab9bb7fbebac5e6320535c8e03022ec445873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#! /bin/sh

# fixvers --- make sure version.c and patchlev.h reflect
# 	      the reality in configure.in
#
# Copyright (C) 2001, 2002 the Free Software Foundation, Inc.
#
# This file is part of GAWK, the GNU implementation of the
# AWK Programming Language.
#
# GAWK is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# GAWK is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA

line=`grep AM_INIT_AUTOMAKE configure.in`

case $1 in
-v)
	VERS=`echo $line | sed 's/.*, *\([0-9][0-9]*\)\.\([0-9][0-9]*\)\.\([0-9][0-9a-z]*\))/\1.\2/'`
	sed "s/X\.Y/$VERS/" < version.in > version.new
	if [ -f version.c ] && cmp version.c version.new
	then
		rm version.new
	else
		mv version.new version.c
	fi
	touch version.c
	;;

-p)
	LEV=`echo $line | sed 's/.*, *\([0-9][0-9]*\)\.\([0-9][0-9]*\)\.\([0-9][0-9a-z]*\))/\"\3\"/'`
	echo "#define PATCHLEVEL	$LEV" > patchlev.new
	if [ -f patchlev.h ] && cmp patchlev.h patchlev.new
	then
		rm patchlev.new
	else
		mv patchlev.new patchlev.h
	fi
	touch patchlev.h
	;;

*)
	echo "usage: $0 -v|-p" 1>&2
	exit 1
	;;
esac

exit 0