xref: /minix3/crypto/external/bsd/netpgp/dist/src/lib/version.h (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1ebfedea0SLionel Sambuc /*-
2ebfedea0SLionel Sambuc  * Copyright (c) 2009 The NetBSD Foundation, Inc.
3ebfedea0SLionel Sambuc  * All rights reserved.
4ebfedea0SLionel Sambuc  *
5ebfedea0SLionel Sambuc  * This code is derived from software contributed to The NetBSD Foundation
6ebfedea0SLionel Sambuc  * by Alistair Crooks (agc@NetBSD.org)
7ebfedea0SLionel Sambuc  *
8ebfedea0SLionel Sambuc  * Redistribution and use in source and binary forms, with or without
9ebfedea0SLionel Sambuc  * modification, are permitted provided that the following conditions
10ebfedea0SLionel Sambuc  * are met:
11ebfedea0SLionel Sambuc  * 1. Redistributions of source code must retain the above copyright
12ebfedea0SLionel Sambuc  *    notice, this list of conditions and the following disclaimer.
13ebfedea0SLionel Sambuc  * 2. Redistributions in binary form must reproduce the above copyright
14ebfedea0SLionel Sambuc  *    notice, this list of conditions and the following disclaimer in the
15ebfedea0SLionel Sambuc  *    documentation and/or other materials provided with the distribution.
16ebfedea0SLionel Sambuc  *
17ebfedea0SLionel Sambuc  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
18ebfedea0SLionel Sambuc  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19ebfedea0SLionel Sambuc  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20ebfedea0SLionel Sambuc  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
21ebfedea0SLionel Sambuc  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22ebfedea0SLionel Sambuc  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23ebfedea0SLionel Sambuc  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24ebfedea0SLionel Sambuc  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25ebfedea0SLionel Sambuc  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26ebfedea0SLionel Sambuc  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27ebfedea0SLionel Sambuc  * POSSIBILITY OF SUCH DAMAGE.
28ebfedea0SLionel Sambuc  */
29ebfedea0SLionel Sambuc /*
30ebfedea0SLionel Sambuc  * Copyright (c) 2005-2008 Nominet UK (www.nic.uk)
31ebfedea0SLionel Sambuc  * All rights reserved.
32ebfedea0SLionel Sambuc  * Contributors: Ben Laurie, Rachel Willmer. The Contributors have asserted
33ebfedea0SLionel Sambuc  * their moral rights under the UK Copyright Design and Patents Act 1988 to
34ebfedea0SLionel Sambuc  * be recorded as the authors of this copyright work.
35ebfedea0SLionel Sambuc  *
36ebfedea0SLionel Sambuc  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
37ebfedea0SLionel Sambuc  * use this file except in compliance with the License.
38ebfedea0SLionel Sambuc  *
39ebfedea0SLionel Sambuc  * You may obtain a copy of the License at
40ebfedea0SLionel Sambuc  *     http://www.apache.org/licenses/LICENSE-2.0
41ebfedea0SLionel Sambuc  *
42ebfedea0SLionel Sambuc  * Unless required by applicable law or agreed to in writing, software
43ebfedea0SLionel Sambuc  * distributed under the License is distributed on an "AS IS" BASIS,
44ebfedea0SLionel Sambuc  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
45ebfedea0SLionel Sambuc  *
46ebfedea0SLionel Sambuc  * See the License for the specific language governing permissions and
47ebfedea0SLionel Sambuc  * limitations under the License.
48ebfedea0SLionel Sambuc  */
49ebfedea0SLionel Sambuc #ifndef VERSION_H_
50ebfedea0SLionel Sambuc #define VERSION_H_	1
51ebfedea0SLionel Sambuc 
52ebfedea0SLionel Sambuc #ifndef NETPGP_AUTOCONF_VERSION
53ebfedea0SLionel Sambuc #define NETPGP_AUTOCONF_VERSION	PACKAGE_VERSION
54ebfedea0SLionel Sambuc #endif
55ebfedea0SLionel Sambuc 
56ebfedea0SLionel Sambuc #ifndef NETPGP_MAINTAINER
57ebfedea0SLionel Sambuc #define NETPGP_MAINTAINER	PACKAGE_BUGREPORT
58ebfedea0SLionel Sambuc #endif
59ebfedea0SLionel Sambuc 
60ebfedea0SLionel Sambuc /* development versions have .99 suffix */
61*0a6a1f1dSLionel Sambuc #define NETPGP_BASE_VERSION	"3.99.17"
62ebfedea0SLionel Sambuc 
63ebfedea0SLionel Sambuc #define NETPGP_VERSION_CAT(a, b)	"NetPGP portable " a "/[" b "]"
64ebfedea0SLionel Sambuc #define NETPGP_VERSION_STRING \
65ebfedea0SLionel Sambuc 	NETPGP_VERSION_CAT(NETPGP_BASE_VERSION, NETPGP_AUTOCONF_VERSION)
66ebfedea0SLionel Sambuc 
67ebfedea0SLionel Sambuc #endif /* !VERSION_H_ */
68