1227064Sbz/*	$NetBSD$	*/
2227064Sbz
3227064Sbz/*
4227064Sbz * Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
5227064Sbz * Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved.
6227064Sbz *
7227064Sbz * This file is part of LVM2.
8227064Sbz *
9227064Sbz * This copyrighted material is made available to anyone wishing to use,
10227064Sbz * modify, copy, or redistribute it subject to the terms and conditions
11227064Sbz * of the GNU Lesser General Public License v.2.1.
12227064Sbz *
13227064Sbz * You should have received a copy of the GNU Lesser General Public License
14227064Sbz * along with this program; if not, write to the Free Software Foundation,
15227064Sbz * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16227064Sbz */
17227064Sbz
18227064Sbz#ifndef _LVM_VERSION_H
19227064Sbz/**
20227064Sbz * The LVM version number
21227064Sbz *
22227064Sbz * LVM_MAJOR.LVM_MINOR.LVM_PATCHLEVEL(LVM_LIBAPI)[-LVM_RELEASE]
23227064Sbz */
24227064Sbz
25227064Sbz#define LVM_VERSION "2.02.56(1) (2009-11-24)"
26227064Sbz#define LVM_MAJOR 2
27227064Sbz#define LVM_MINOR 02
28227064Sbz#define LVM_PATCHLEVEL 56
29227064Sbz#define LVM_LIBAPI 1
30227064Sbz#define LVM_RELEASE ""
31227064Sbz#define LVM_RELEASE_DATE "2009-11-24"
32227064Sbz#endif
33227064Sbz