/* Copyright 2000, 2001, 2002 Laurent Wacrenier This file is part of libhome libhome is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. libhome 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with libhome; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* $Id: version.h,v 1.9 2004/08/05 14:12:32 lwa Exp $ */ #include "home_version.h" #if WITH_DB == 4 #define OPT_DB "+DB4" #elif WITH_DB == 3 #define OPT_DB "+DB3" #else #define OPT_DB "" #endif #if WITH_MYSQL #define OPT_MYSQL "+MySQL" #else #define OPT_MYSQL "" #endif #if WITH_LDAP #define OPT_LDAP "+LDAP" #else #define OPT_LDAP "" #endif #if WITH_PGSQL #define OPT_PGSQL "+PGSQL" #else #define OPT_PGSQL "" #endif #if WITH_PAM #define OPT_PAM "+PAM" #else #define OPT_PAM "" #endif #define VERSION "version=" LIBHOME_VERSION ", options=" OPT_DB OPT_MYSQL OPT_PGSQL OPT_LDAP OPT_PAM