mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1224642 - Don't allow arguments to the XPCOMBinaryComponent template. r=gps
XPCOM binary components imply dependent linkage, don't work with msvcrt static linkage and have to be built against mozglue, so let's remove all the footguns changing those add.
This commit is contained in:
parent
eb0978518b
commit
0644317347
@ -160,11 +160,11 @@ def GeckoFramework(name, **kwargs):
|
||||
|
||||
|
||||
@template
|
||||
def XPCOMBinaryComponent(name, **kwargs):
|
||||
def XPCOMBinaryComponent(name):
|
||||
'''Template defining an XPCOM binary component for Gecko.
|
||||
|
||||
`name` is the name of the component.
|
||||
'''
|
||||
GeckoSharedLibrary(name, **kwargs)
|
||||
GeckoSharedLibrary(name)
|
||||
|
||||
IS_COMPONENT = True
|
||||
|
Loading…
Reference in New Issue
Block a user