Bug 757060 - redit fails to compile on mingw due to wmain linkage error r=glandium

This commit is contained in:
Jacek Caban 2012-05-22 10:44:13 +02:00
Родитель 0c043877fe
Коммит b18f5aee74
2 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -28,6 +28,11 @@ DEFINES += -DWIN32_LEAN_AND_MEAN \
LIBS = \
$(XPCOM_STANDALONE_GLUE_LDOPTS) \
$(NULL)
ifdef GNU_CC
WIN32_EXE_LDFLAGS = -municode
endif
endif
include $(topsrcdir)/config/rules.mk

Просмотреть файл

@ -96,6 +96,9 @@ namespace {
typedef Scoped<ScopedResourceUpdateTraits> ScopedResourceUpdate;
};
#ifdef __MINGW32__
extern "C"
#endif
int
wmain(int argc, wchar_t** argv)
{