11256Syl150051 /* 21256Syl150051 * CDDL HEADER START 31256Syl150051 * 41256Syl150051 * The contents of this file are subject to the terms of the 51256Syl150051 * Common Development and Distribution License (the "License"). 61256Syl150051 * You may not use this file except in compliance with the License. 71256Syl150051 * 81256Syl150051 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 91256Syl150051 * or http://www.opensolaris.org/os/licensing. 101256Syl150051 * See the License for the specific language governing permissions 111256Syl150051 * and limitations under the License. 121256Syl150051 * 131256Syl150051 * When distributing Covered Code, include this CDDL HEADER in each 141256Syl150051 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 151256Syl150051 * If applicable, add the following below this CDDL HEADER, with the 161256Syl150051 * fields enclosed by brackets "[]" replaced with your own identifying 171256Syl150051 * information: Portions Copyright [yyyy] [name of copyright owner] 181256Syl150051 * 191256Syl150051 * CDDL HEADER END 201256Syl150051 * 21*3115Syl150051 * Copyright (c) 2002-2006 Neterion, Inc. 221256Syl150051 */ 231256Syl150051 241256Syl150051 #ifndef VERSION_H 251256Syl150051 #define VERSION_H 261256Syl150051 271256Syl150051 #include "build-version.h" 281256Syl150051 291256Syl150051 #define XGE_HAL_VERSION_MAJOR "2" 30*3115Syl150051 #define XGE_HAL_VERSION_MINOR "5" 311256Syl150051 #define XGE_HAL_VERSION_FIX "0" 321256Syl150051 #define XGE_HAL_VERSION_BUILD GENERATED_BUILD_VERSION 331256Syl150051 #define XGE_HAL_VERSION XGE_HAL_VERSION_MAJOR"."XGE_HAL_VERSION_MINOR"."\ 341256Syl150051 XGE_HAL_VERSION_FIX"."XGE_HAL_VERSION_BUILD 351256Syl150051 #define XGE_HAL_DESC XGE_DRIVER_NAME" v."XGE_HAL_VERSION 361256Syl150051 371256Syl150051 #ifdef XGELL_VERSION_DEFINITION_PROVIDED 381256Syl150051 /* Link Layer versioning */ 391256Syl150051 #include "xgell-version.h" 401256Syl150051 #else 411256Syl150051 #define XGELL_VERSION_MAJOR "0" 421256Syl150051 #define XGELL_VERSION_MINOR "0" 431256Syl150051 #define XGELL_VERSION_FIX "0" 441256Syl150051 #define XGELL_VERSION_BUILD "0" 451256Syl150051 #define XGELL_VERSION XGELL_VERSION_MAJOR"."XGELL_VERSION_MINOR 461256Syl150051 #endif 471256Syl150051 481256Syl150051 #endif /* VERSION_H */ 49