diff options
Diffstat (limited to 'include/acpi/platform/acenvex.h')
-rw-r--r-- | include/acpi/platform/acenvex.h | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/include/acpi/platform/acenvex.h b/include/acpi/platform/acenvex.h index 4f15c1d10b61..b3171b9d6974 100644 --- a/include/acpi/platform/acenvex.h +++ b/include/acpi/platform/acenvex.h | |||
@@ -56,17 +56,24 @@ | |||
56 | #if defined(_LINUX) || defined(__linux__) | 56 | #if defined(_LINUX) || defined(__linux__) |
57 | #include <acpi/platform/aclinuxex.h> | 57 | #include <acpi/platform/aclinuxex.h> |
58 | 58 | ||
59 | #elif defined(WIN32) | 59 | #elif defined(__DragonFly__) |
60 | #include "acwinex.h" | 60 | #include "acdragonflyex.h" |
61 | 61 | ||
62 | #elif defined(_AED_EFI) | 62 | /* |
63 | * EFI applications can be built with -nostdlib, in this case, it must be | ||
64 | * included after including all other host environmental definitions, in | ||
65 | * order to override the definitions. | ||
66 | */ | ||
67 | #elif defined(_AED_EFI) || defined(_GNU_EFI) || defined(_EDK2_EFI) | ||
63 | #include "acefiex.h" | 68 | #include "acefiex.h" |
64 | 69 | ||
65 | #elif defined(_GNU_EFI) | 70 | #endif |
66 | #include "acefiex.h" | ||
67 | 71 | ||
68 | #elif defined(__DragonFly__) | 72 | #if defined(__GNUC__) && !defined(__INTEL_COMPILER) |
69 | #include "acdragonflyex.h" | 73 | #include "acgccex.h" |
74 | |||
75 | #elif defined(_MSC_VER) | ||
76 | #include "acmsvcex.h" | ||
70 | 77 | ||
71 | #endif | 78 | #endif |
72 | 79 | ||