1 /* 2 * Copyright (c) 2005-2008 Nominet UK (www.nic.uk) 3 * All rights reserved. 4 * Contributors: Ben Laurie, Rachel Willmer. The Contributors have asserted 5 * their moral rights under the UK Copyright Design and Patents Act 1988 to 6 * be recorded as the authors of this copyright work. 7 * 8 * Licensed under the Apache License, Version 2.0 (the "License"); you may not 9 * use this file except in compliance with the License. 10 * 11 * You may obtain a copy of the License at 12 * http://www.apache.org/licenses/LICENSE-2.0 13 * 14 * Unless required by applicable law or agreed to in writing, software 15 * distributed under the License is distributed on an "AS IS" BASIS, 16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 17 * 18 * See the License for the specific language governing permissions and 19 * limitations under the License. 20 */ 21 #ifndef VERSION_H_ 22 #define VERSION_H_ 1 23 24 /* development versions have .99 suffix */ 25 #define NETPGP_BASE_VERSION "0.99.1" 26 27 #define NETPGP_VERSION_CAT(a, b, c) "NetPGP portable " a " [src=" b "/bin=" c "]" 28 #define NETPGP_VERSION_STRING \ 29 NETPGP_VERSION_CAT(NETPGP_BASE_VERSION, NETPGP_AUTOCONF_VERSION, NETPGP_BUILD_TIME) 30 31 #endif /* !VERSION_H_ */ 32