1267974Sjkim/******************************************************************************
2267974Sjkim *
3267974Sjkim * Name: acenvex.h - Extra host and compiler configuration
4267974Sjkim *
5267974Sjkim *****************************************************************************/
6267974Sjkim
7267974Sjkim/*
8306536Sjkim * Copyright (C) 2000 - 2016, Intel Corp.
9267974Sjkim * All rights reserved.
10267974Sjkim *
11267974Sjkim * Redistribution and use in source and binary forms, with or without
12267974Sjkim * modification, are permitted provided that the following conditions
13267974Sjkim * are met:
14267974Sjkim * 1. Redistributions of source code must retain the above copyright
15267974Sjkim *    notice, this list of conditions, and the following disclaimer,
16267974Sjkim *    without modification.
17267974Sjkim * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18267974Sjkim *    substantially similar to the "NO WARRANTY" disclaimer below
19267974Sjkim *    ("Disclaimer") and any redistribution must be conditioned upon
20267974Sjkim *    including a substantially similar Disclaimer requirement for further
21267974Sjkim *    binary redistribution.
22267974Sjkim * 3. Neither the names of the above-listed copyright holders nor the names
23267974Sjkim *    of any contributors may be used to endorse or promote products derived
24267974Sjkim *    from this software without specific prior written permission.
25267974Sjkim *
26267974Sjkim * Alternatively, this software may be distributed under the terms of the
27267974Sjkim * GNU General Public License ("GPL") version 2 as published by the Free
28267974Sjkim * Software Foundation.
29267974Sjkim *
30267974Sjkim * NO WARRANTY
31267974Sjkim * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32267974Sjkim * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33267974Sjkim * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34267974Sjkim * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35267974Sjkim * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36267974Sjkim * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37267974Sjkim * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38267974Sjkim * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39267974Sjkim * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40267974Sjkim * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41267974Sjkim * POSSIBILITY OF SUCH DAMAGES.
42267974Sjkim */
43267974Sjkim
44267974Sjkim#ifndef __ACENVEX_H__
45267974Sjkim#define __ACENVEX_H__
46267974Sjkim
47267974Sjkim/*! [Begin] no source code translation */
48267974Sjkim
49267974Sjkim/******************************************************************************
50267974Sjkim *
51267974Sjkim * Extra host configuration files. All ACPICA headers are included before
52267974Sjkim * including these files.
53267974Sjkim *
54267974Sjkim *****************************************************************************/
55267974Sjkim
56267974Sjkim#if defined(_LINUX) || defined(__linux__)
57267974Sjkim#include "aclinuxex.h"
58267974Sjkim
59306536Sjkim#elif defined(WIN32)
60306536Sjkim#include "acwinex.h"
61306536Sjkim
62306536Sjkim#elif defined(_AED_EFI)
63306536Sjkim#include "acefiex.h"
64306536Sjkim
65306536Sjkim#elif defined(_GNU_EFI)
66306536Sjkim#include "acefiex.h"
67306536Sjkim
68284460Sjkim#elif defined(__DragonFly__)
69284460Sjkim#include "acdragonflyex.h"
70284460Sjkim
71267974Sjkim#endif
72267974Sjkim
73267974Sjkim/*! [End] no source code translation !*/
74267974Sjkim
75267974Sjkim#endif /* __ACENVEX_H__ */
76