xref: /netbsd-src/external/gpl2/lvm2/dist/lib/misc/lvm-version.h (revision 7c604eea85b4f330dc75ffe65e947f4d73758aa0)
1*7c604eeaShaad /*	$NetBSD: lvm-version.h,v 1.1.1.1 2009/12/02 00:26:44 haad Exp $	*/
2*7c604eeaShaad 
3*7c604eeaShaad /*
4*7c604eeaShaad  * Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
5*7c604eeaShaad  * Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved.
6*7c604eeaShaad  *
7*7c604eeaShaad  * This file is part of LVM2.
8*7c604eeaShaad  *
9*7c604eeaShaad  * This copyrighted material is made available to anyone wishing to use,
10*7c604eeaShaad  * modify, copy, or redistribute it subject to the terms and conditions
11*7c604eeaShaad  * of the GNU Lesser General Public License v.2.1.
12*7c604eeaShaad  *
13*7c604eeaShaad  * You should have received a copy of the GNU Lesser General Public License
14*7c604eeaShaad  * along with this program; if not, write to the Free Software Foundation,
15*7c604eeaShaad  * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16*7c604eeaShaad  */
17*7c604eeaShaad 
18*7c604eeaShaad #ifndef _LVM_VERSION_H
19*7c604eeaShaad /**
20*7c604eeaShaad  * The LVM version number
21*7c604eeaShaad  *
22*7c604eeaShaad  * LVM_MAJOR.LVM_MINOR.LVM_PATCHLEVEL(LVM_LIBAPI)[-LVM_RELEASE]
23*7c604eeaShaad  */
24*7c604eeaShaad 
25*7c604eeaShaad #define LVM_VERSION "2.02.56(1) (2009-11-24)"
26*7c604eeaShaad #define LVM_MAJOR 2
27*7c604eeaShaad #define LVM_MINOR 02
28*7c604eeaShaad #define LVM_PATCHLEVEL 56
29*7c604eeaShaad #define LVM_LIBAPI 1
30*7c604eeaShaad #define LVM_RELEASE ""
31*7c604eeaShaad #define LVM_RELEASE_DATE "2009-11-24"
32*7c604eeaShaad #endif
33