aboutsummaryrefslogtreecommitdiff
path: root/src/builtin/prereq.bi
blob: 968735b9d7bb1a8534ef5c85a59a9de86591e1f7 (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
/* This file is part of Mailfromd.             -*- c -*-
   Copyright (C) 2006-2011, 2015 Sergey Poznyakoff

   This program 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 3, or (at your option)
   any later version.

   This program 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, see <http://www.gnu.org/licenses/>. */

/* #pragma prereq <version> */
MF_PRAGMA(prereq, 1, 0)
{
	int res;
	
	if (mf_vercmp(PACKAGE_VERSION, argv[1], &res) < 0) {
		if (res == 0)
			abort();
		parse_error(_("invalid version syntax"));
	} else if (res < 0) {
		parse_error(_("this source file requires %s version %s or later,"),
			    PACKAGE_NAME, argv[1]);
		parse_error(_("but you use version %s"), PACKAGE_VERSION);
	}
}

MF_DEFUN(vercmp, NUMBER, STRING a, STRING b)
{
	int res;

	if (mf_vercmp(a, b, &res) < 0)
		MF_THROW(mfe_range,
			 _("not a valid version number: %s (argument %d)"),
			 res == 0 ? a : b, res + 1);
	MF_RETURN(res);
}
END

MF_INIT

Return to:

Send suggestions and report system problems to the System administrator.