Fixes a regression caused by b39b9eea39b19a8f91543b8350ed822d0fd9eef0.
Signed-off-by: Gijs Vermeulen gijsvrm@gmail.com --- dlls/wineqtdecoder/Makefile.in | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/wineqtdecoder/Makefile.in b/dlls/wineqtdecoder/Makefile.in index 41a96709beb..d6b77b4cb44 100644 --- a/dlls/wineqtdecoder/Makefile.in +++ b/dlls/wineqtdecoder/Makefile.in @@ -1,6 +1,7 @@ MODULE = wineqtdecoder.dll IMPORTS = strmiids uuid ole32 advapi32 EXTRALIBS = $(QUICKTIME_LIBS) +EXTRADEFS = -DWINE_NO_NAMELESS_EXTENSION PARENTSRC = ../strmbase
C_SRCS = \
On 3/24/21 11:56 AM, Gijs Vermeulen wrote:
diff --git a/dlls/wineqtdecoder/Makefile.in b/dlls/wineqtdecoder/Makefile.in index 41a96709beb..d6b77b4cb44 100644 --- a/dlls/wineqtdecoder/Makefile.in +++ b/dlls/wineqtdecoder/Makefile.in @@ -1,6 +1,7 @@ MODULE = wineqtdecoder.dll IMPORTS = strmiids uuid ole32 advapi32 EXTRALIBS = $(QUICKTIME_LIBS) +EXTRADEFS = -DWINE_NO_NAMELESS_EXTENSION
Ideally, we shouldn't need this macro. See my recent patches for an example.
Thanks, Jacek