Difference between revisions of "Talk:Build the Viewer on Linux"
Jump to navigation
Jump to search
Eddy Stryker (talk | contribs) |
|||
Line 2: | Line 2: | ||
I had to add "class LLUICtrlFactory;" to llui/lluictrl.h and llui/llviewborder.h to avoid a bunch of problems about that class missing --[[User:Eddy_Stryker|Eddy Stryker]] | I had to add "class LLUICtrlFactory;" to llui/lluictrl.h and llui/llviewborder.h to avoid a bunch of problems about that class missing --[[User:Eddy_Stryker|Eddy Stryker]] | ||
---- | |||
Isn't it nescessary to use scons with the option <code>OPENSOURCE=no</code> since the source tarball of 2007-01-12, if you wanna use the fast KDU image decoding libraries? I haven't tried thus I am not sure and didn't add it, but the following code block taken from the SConstruct file seems to indicate it: | |||
<code> | |||
if opensource == 'yes': | |||
flags += '-DLL_USE_KDU=0 ' | |||
else: | |||
flags += '-DLL_USE_KDU=1 ' | |||
</code> | |||
--[[User:Sharven Raabe|Sharven Raabe]] 03:47, 14 January 2007 (PST) |
Revision as of 04:47, 14 January 2007
You need yacc too --Eddy Stryker
I had to add "class LLUICtrlFactory;" to llui/lluictrl.h and llui/llviewborder.h to avoid a bunch of problems about that class missing --Eddy Stryker
Isn't it nescessary to use scons with the option OPENSOURCE=no
since the source tarball of 2007-01-12, if you wanna use the fast KDU image decoding libraries? I haven't tried thus I am not sure and didn't add it, but the following code block taken from the SConstruct file seems to indicate it:
if opensource == 'yes':
flags += '-DLL_USE_KDU=0 '
else:
flags += '-DLL_USE_KDU=1 '
--Sharven Raabe 03:47, 14 January 2007 (PST)