Update copyright notices.
[platform/upstream/libtasn1.git] / m4 / update-header-version.m4
1 # update-header-version.m4 serial 1
2 dnl Copyright (C) 2008, 2010 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 dnl From Simon Josefsson
8
9 # sj_UPDATE_HEADER_VERSION(HEADER-FILE)
10 # -------------
11 # Update version number in HEADER-FILE.  It searches for '_VERSION ".*"'
12 # and replaces the .* part with the $PACKAGE_VERSION.
13 AC_DEFUN([sj_UPDATE_HEADER_VERSION],
14 [
15   # Update version number in lib/libtasn1.h.
16   if ! sed 's/_VERSION ".*"/_VERSION "'$PACKAGE_VERSION'"/' $1 > fixhdr.tmp; then
17     AC_MSG_ERROR([[*** Failed to update version number in $1...]])
18   fi
19   if cmp -s $1 fixhdr.tmp 2>/dev/null; then
20     rm -f fixhdr.tmp
21   elif ! mv fixhdr.tmp $1; then
22     AC_MSG_ERROR([[*** Failed to move fixhdr.tmp to $1...]])
23   fi
24 ])