]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.inf
MdeModulePkg: Removing ipf which is no longer supported from edk2.
[mirror_edk2.git] / MdeModulePkg / Universal / RegularExpressionDxe / RegularExpressionDxe.inf
1 ## @file
2 # EFI_REGULAR_EXPRESSION_PROTOCOL Implementation
3 #
4 # Copyright (c) 2018, Intel Corporation. All rights reserved.<BR>
5 # (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>
6 #
7 # This program and the accompanying materials are licensed and made available
8 # under the terms and conditions of the BSD License that accompanies this
9 # distribution. The full text of the license may be found at
10 # http://opensource.org/licenses/bsd-license.php.
11 #
12 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT
13 # WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14 ##
15
16 [Defines]
17 INF_VERSION = 0x00010018
18 BASE_NAME = RegularExpressionDxe
19 FILE_GUID = 3E197E9C-D8DC-42D3-89CE-B04FA9833756
20 MODULE_TYPE = UEFI_DRIVER
21 VERSION_STRING = 1.0
22 ENTRY_POINT = RegularExpressionDxeEntry
23
24 [Sources]
25 RegularExpressionDxe.c
26 RegularExpressionDxe.h
27 Oniguruma/OnigurumaUefiPort.h
28 Oniguruma/OnigurumaUefiPort.c
29 Oniguruma/OnigurumaIntrinsics.c | MSFT
30
31 # Upstream Oniguruma code
32 Oniguruma/oniguruma.h
33 Oniguruma/regcomp.c
34 Oniguruma/regenc.c
35 Oniguruma/regenc.h
36 Oniguruma/regerror.c
37 Oniguruma/regexec.c
38 Oniguruma/oniggnu.h
39 Oniguruma/reggnu.c
40 Oniguruma/regint.h
41 Oniguruma/regparse.c
42 Oniguruma/regparse.h
43 Oniguruma/regposerr.c
44 Oniguruma/onigposix.h
45 Oniguruma/regposix.c
46 Oniguruma/regsyntax.c
47 Oniguruma/regtrav.c
48 Oniguruma/regversion.c
49 Oniguruma/st.c
50 Oniguruma/st.h
51
52 # Supported Character Encodings
53 Oniguruma/enc/ascii.c
54 Oniguruma/enc/unicode.c
55 Oniguruma/enc/utf16_le.c
56
57 [Packages]
58 MdePkg/MdePkg.dec
59 MdeModulePkg/MdeModulePkg.dec
60
61 [LibraryClasses]
62 UefiBootServicesTableLib
63 UefiDriverEntryPoint
64 MemoryAllocationLib
65 BaseMemoryLib
66 DebugLib
67 PrintLib
68
69 [Guids]
70 gEfiRegexSyntaxTypePosixExtendedGuid ## CONSUMES ## GUID
71 gEfiRegexSyntaxTypePerlGuid ## CONSUMES ## GUID
72
73 [Protocols]
74 gEfiRegularExpressionProtocolGuid ## PRODUCES
75
76 [BuildOptions]
77 # Override MSFT build option to remove /Oi and /GL
78 MSFT:DEBUG_*_IA32_CC_FLAGS == /nologo /c /WX /GS- /W4 /Gs32768 /D UNICODE /O1b2 /FIAutoGen.h /EHs-c- /GR- /GF /Gy /Zi /Gm
79 MSFT:RELEASE_*_IA32_CC_FLAGS == /nologo /c /WX /GS- /W4 /Gs32768 /D UNICODE /O1b2 /FIAutoGen.h /EHs-c- /GR- /GF
80 MSFT:DEBUG_*_X64_CC_FLAGS == /nologo /c /WX /GS- /W4 /Gs32768 /D UNICODE /O1b2s /FIAutoGen.h /EHs-c- /GR- /GF /Gy /Zi /Gm /X
81 MSFT:RELEASE_*_X64_CC_FLAGS == /nologo /c /WX /GS- /W4 /Gs32768 /D UNICODE /O1b2s /FIAutoGen.h /EHs-c- /GR- /GF /Gy /X
82 INTEL:*_*_*_CC_FLAGS = /Oi-
83
84 # Oniguruma: potentially uninitialized local variable used
85 MSFT:*_*_*_CC_FLAGS = /wd4701
86
87 # Oniguruma: intrinsic function not declared
88 MSFT:*_*_*_CC_FLAGS = /wd4164
89
90 # Oniguruma: old style declaration in st.c
91 MSFT:*_*_*_CC_FLAGS = /wd4131
92
93 # Oniguruma: 'type cast' : truncation from 'OnigUChar *' to 'unsigned int'
94 MSFT:*_*_*_CC_FLAGS = /wd4305 /wd4306
95