On 18/02/14 00:50, salome...@terra.com wrote: > Hello, > > I get the following error when I try to compile Qt5.2.1 with MingGW to > 64 bits > > ./.obj/debug/qhttpnetworkreply.o: In function `ZN17QHttpNetworkReplyD2Ev': > c:\Qt\5.2.1MinGW64\src\network/access/qhttpnetworkreply.cpp:75: > undefined refere > nce to `z_inflateEnd'
Use the source! #ifndef QT_NO_COMPRESS if (d->autoDecompress && d->isCompressed() && d->inflateStrm) inflateEnd(d->inflateStrm); #endif So you are building Qt with QT_NO_COMPRESS not defined, so it's using compression. A look at access.pri tells: include($$PWD/../../3rdparty/zlib_dependency.pri) So you need zlib. Either you don't have it or the linker is having trouble finding it. Chris > > > What is the problem? > > Thank you > > > > > > > _______________________________________________ > Interest mailing list > Interest@qt-project.org > http://lists.qt-project.org/mailman/listinfo/interest > _______________________________________________ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest