[protobuf] Re: Compile protobuf-2.4.1 with MinGW 4.6.2

2013-02-03 Thread gerha roang
Pada Senin, 21 Januari 2013 1:45:38 UTC+7, Giorgio Guglielmone menulis: > > Hello everyone, I can not compile protobuf-2.4.1 with MinGW 4.6.2, because > ./configure in MSYS crashes, remains in the sleep state and the computer is > locked. Can you help me or as an attachment package compiled wit

[protobuf] Re: google buffer in QT

2013-02-03 Thread Nicu Tofan
undefined reference is a linker message. It means that the compilation stage is over (include files are irelevant at this stage). You need to link agains the library. A line like: LIBS += -lprotobuf in a .pro files will help (you may also may need a -Lpath option). You may alsoi be interested

[protobuf] Re: Issue 447 in protobuf: No C++11 move constructors

2013-02-03 Thread protobuf
Comment #5 on issue 447 by jacek.si...@grasshopperasia.com: No C++11 move constructors http://code.google.com/p/protobuf/issues/detail?id=447 Perhaps treating C++11 as a separate language (i e an option to protoc) and generating different code for it would make more sense, instead of riddli