Update Gnulib; add new modules.
[bpt/guile.git] / m4 / version-etc.m4
CommitLineData
4f02b98d 1# version-etc.m4 serial 1
49114fd4 2# Copyright (C) 2009-2011 Free Software Foundation, Inc.
4f02b98d
LC
3# This file is free software; the Free Software Foundation
4# gives unlimited permission to copy and/or distribute it,
5# with or without modifications, as long as this notice is preserved.
6
7dnl $1 - configure flag and define name
8dnl $2 - human readable description
9m4_define([gl_VERSION_ETC_FLAG],
10[dnl
11 AC_ARG_WITH([$1], [AS_HELP_STRING([--with-$1], [$2])],
12 [dnl
13 case $withval in
1cd4fffc
LC
14 yes|no) ;;
15 *) AC_DEFINE_UNQUOTED(AS_TR_CPP([PACKAGE_$1]), ["$withval"], [$2]) ;;
4f02b98d
LC
16 esac
17 ])
18])
19
20AC_DEFUN([gl_VERSION_ETC],
21[dnl
22 gl_VERSION_ETC_FLAG([packager],
1cd4fffc 23 [String identifying the packager of this software])
4f02b98d 24 gl_VERSION_ETC_FLAG([packager-version],
1cd4fffc 25 [Packager-specific version information])
4f02b98d 26 gl_VERSION_ETC_FLAG([packager-bug-reports],
1cd4fffc 27 [Packager info for bug reports (URL/e-mail/...)])
4f02b98d
LC
28 if test "X$with_packager" = "X" && \
29 test "X$with_packager_version$with_packager_bug_reports" != "X"
30 then
31 AC_MSG_ERROR([The --with-packager-{bug-reports,version} options require --with-packager])
32 fi
33])