mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 975735 - Port the LDFLAGS variables in netwerk/streamconv/test/Makefile.in to moz.build; r=mshal
This commit is contained in:
parent
82229353c1
commit
9db47ba189
@ -10,11 +10,3 @@ LIBS = \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
ifeq ($(OS_ARCH),WINNT)
|
||||
ifdef GNU_CXX
|
||||
LDFLAGS += -mconsole
|
||||
else
|
||||
LDFLAGS += -SUBSYSTEM:CONSOLE
|
||||
endif
|
||||
endif # WINNT
|
||||
|
@ -16,3 +16,7 @@ FAIL_ON_WARNINGS = True
|
||||
if CONFIG['OS_ARCH'] == 'WINNT':
|
||||
for var in ('MOZ_NO_DEBUG_RTL', 'NGPREFS'):
|
||||
DEFINES[var] = True
|
||||
if CONFIG['GNU_CXX']:
|
||||
LDFLAGS += ['-mconsole']
|
||||
else:
|
||||
LDFLAGS += ['-SUBSYSTEM:CONSOLE']
|
||||
|
Loading…
Reference in New Issue
Block a user