taku910 / crfpp

CRF++: Yet Another CRF toolkit
Other
505 stars 192 forks source link

add winmain.h to fix build #15

Open humem opened 9 years ago

humem commented 9 years ago

winmain.h is taken from the latest crfpp version 0.59 archive stored in googlecode

arne-cl commented 9 years ago

Without the patch, compilation doesn't work.

$ /opt/crfpp# make
make  all-am
make[1]: Entering directory `/opt/crfpp'
g++ -DHAVE_CONFIG_H -I.     -O3 -Wall -c -o crf_learn.o crf_learn.cpp
crf_learn.cpp:9:21: fatal error: winmain.h: No such file or directory
 #include "winmain.h"
                     ^
compilation terminated.
make[1]: *** [crf_learn.o] Error 1
make[1]: Leaving directory `/opt/crfpp'
make: *** [all] Error 2
ghost commented 8 years ago

Worked around this on OS X by adding a

#ifdef _WIN32
#include "winmain.h"
#endif
icoxfog417 commented 6 years ago

Thank you for the fix. It works for me. I'm waiting this is merged to master.

shboy commented 5 years ago

Worked around this on OS X by adding a

#ifdef _WIN32
#include "winmain.h"
#endif

good