compiling Poco-1.5.1 with MinGW -
i'm trying compile poco-1.5.1 mingw (gcc 4.7.0) under windows 7.
it have std::copysign issues @ foundation\include\poco\fpenvironment_dummy.h, easy solve commenting "std::" @ copysignimpl methods.
my next problem comes file "foundation\src\eventlogchannel.cpp", trying include "pocomsg.h", doesn't exist.
i have read pocomsg.h generated pocomsg.mc script. mc message compiler microsoft, , not present in mingw system. should include manually pocomsg.h post?
poco lib dosnt compile in vs express 9
is there better way solve this?
thanks.
pocomsg.h should found in ../foundation/src/
it doesn't contain important stuff according post, couple of defines:
#define poco_ctg_fatal 0x00000001l #define poco_ctg_critical 0x00000002l #define poco_ctg_error 0x00000003l #define poco_ctg_warning 0x00000004l #define poco_ctg_notice 0x00000005l #define poco_ctg_information 0x00000006l #define poco_ctg_debug 0x00000007l #define poco_ctg_trace 0x00000008l #define poco_msg_log 0x00001000l
are guts of file. try defining them in poco.h, possibly.
Comments
Post a Comment