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