Tagged Questions
0
votes
2answers
109 views
how to link zlib library
Hi I'm using boost and zlib filter to compress and decompress data. on the instruction of boost page, it is saying
if the .cpp file depends on an external library, you'll have to build it from the ...
0
votes
1answer
64 views
qmake clucene-core-2.3.3.4 errors
OK this new topics form me i tried to build the last core of clucene :
http://sourceforge.net/projects/clucene/files/latest/download?source=files
with cmake gui and i faced a lot of trouble then ...
0
votes
1answer
97 views
Building Boost 1.52 with zlib as a static library
I am working in windows with vs2012 running all builds though a python build script. I am attempting to build Boost 1.52 and I need to link in zlib statically. I have a build of zlib and by default ...
0
votes
0answers
137 views
boost zlib link error in visual studio 2012
I followed the following link to build zlib
http://tpgit.github.com/UnOfficialLeptDocs/vs2008/building-image-libraries.html#building-zlib
then I used command to build boost iostream and boost zlib ...
4
votes
1answer
276 views
Boost IO Stream and ZLib speed up
I have a large file of data I have compressed with Zlib using boost IOStreams and filtering stream buffers:
boost::iostreams::array_source uncompressedArray( reinterpret_cast< const char* >( ...
1
vote
0answers
81 views
boost deflate and unsigned char ptr
I have pointer to unsigned char array and length of data
For example:
int length = 10;
unsigned char *data = new unsigned char[length];
std::fill(data, data + length - 1, 0x03);
I need to ...
2
votes
0answers
532 views
How to compress with boost zlib streaming data
I have a server and receive on it data from another server. This data must be compressed with zlib and sent by socket to third server. The third server uses gzip to decompress the data.
I use this ...
0
votes
1answer
409 views
compiling boost with zlib on Linux
I am trying to compile a code that uses Boost's zlib wrappers. However, no matter what I do, I can't get this to work.
In my cpp file, I have the following headers:
#include <algorithm>
...
1
vote
1answer
617 views
Uncompressing zlib data using boost::iostreams::filtering_streambuf trouble
I'm trying to write a small class that will load the chunk data from part of a minecraft world file. I'm to the point where I have stored some data in a char array which was compressed with zlib and ...
2
votes
1answer
296 views
How can I decompress a vector of deflated data with Boost?
I have a vector that contains zlib-compressed (deflated) data. I would like to decompress it with Boost's filtering_istream. There is only one example on their site, which operates on a stream of data ...
4
votes
1answer
1k views
boost gzip decompress byte array
I implemented the gzip/zlib decompression of files as shown in their examples on the boost site.
void CompressionUtils::Inflate(std::ifstream& inputFile,
...
0
votes
1answer
273 views
Compiling Boost.Iostream on Linux with custom compiled zlib causes multiple jam errors
So I try to create a script for automated compilation of Boost with Iostream with Zlib support on linux. Currently I have this:
#!/bin/bash
BOOST_DISTRO_SITE=surfnet.dl.sourceforge.net
...
0
votes
1answer
477 views
How to get around building Boost.Iostreams separatly with zip (gz) support on Windows?
I want to compile such simple code:
#include <iostream>
#include <fstream>
#include <string>
#include <zlib.h>
#include <boost/iostreams/filtering_streambuf.hpp>
...
1
vote
2answers
524 views
Zlib C++ boost inflate socket data
I am receiving data from a server through a socket using boost asio, and the data is compressed using zlib. I need to inflate this data once I get it. Is there an easy way to do this using boost? Or ...
2
votes
1answer
2k views
boost::iostream zlib compressing multiple files into one archive
i'm having trouble packing a bunch of files into one archive. the boost docs are very limited on this topic and i've searched the web for several hours now, but i can't find a solution.
What i have ...
9
votes
2answers
15k views
Installing latest 1.44 boost library under ubuntu 10.04
I have ubuntu 10.04 and want to install the latest boost library 1.44_0
I downloaded the tar.gz file and unpacked it into /usr/local/boost_1_44_0
I already have the boost 1.40 version install from ...
3
votes
1answer
828 views
Flushing a boost::iostreams::zlib_compressor. How to obtain a “sync flush”?
Is there some magic required to obtain a "zlib sync flush" when using boost::iostreams::zlib_compressor ? Just invoking flush on the filter, or strict_sync on a filtering_ostream containing it ...
6
votes
5answers
8k views
How do I zip a directory of files using C++?
I'm working on a project using C++, Boost, and Qt. I understand how to compress single files and bytestreams using, for example, the qCompress() function in Qt.
How do I zip a directory of multiple ...