Difference between revisions of "User:Cip"

Jump to navigation Jump to search
425 bytes added ,  16:07, 29 August 2010
common.h patch for Qt creator
(subclipse as svn client)
(common.h patch for Qt creator)
 
Line 204: Line 204:
<pre>
<pre>
#ifndef LZMA_API_IMPORT
#ifndef LZMA_API_IMPORT
</pre>
:xzsrcliblzmacommoncommon.h
Only required if QT creator is used for building. For carbide it appearantly works without this patch:
<pre>
#define lzma_next_strm_init(func, strm, ...)
</pre>
to
<pre>
#define lzma_next_strm_init(func, strm, variableargs...)
</pre>
and
<pre>
                        (strm)->allocator,  __VA_ARGS__);
</pre>
to
<pre>
                        (strm)->allocator, variableargs);
</pre>
</pre>


7

edits

Navigation menu