Difference between revisions of "User:Cip"

Jump to navigation Jump to search
636 bytes added ,  16:07, 29 August 2010
common.h patch for Qt creator
(work in progress (compile zimlib for symbian))
(common.h patch for Qt creator)
 
(One intermediate revision by the same user not shown)
Line 45: Line 45:


===SVN client===
===SVN client===
Used tortoise svn
 
Subclipse can be integrated in the Carbide.c++ IDE. For installation instructions have a look at:
 
:http://wiki.forum.nokia.com/index.php/Using_Subclipse_with_Carbide.c%2B%2B
 
Alternatively for example tortoisesvn can be used:


:http://tortoisesvn.net/downloads
:http://tortoisesvn.net/downloads
Line 199: 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