I'm stupid!!!<br><br><br>In lcl/interfaces/qt/qt4.pas is wrote:<br><br>{$IFDEF MSWINDOWS}<br>QtIntf  = 'libqt4intf.dll';<br>{$ENDIF}<br>{$IFDEF LINUX}<br>QtIntf  = 'libqt4intf.so';<br>{$ENDIF}<br>{$IFDEF DARWIN}
<br>
QtIntf  = '';<br>
{$ENDIF}<br><br><br>FREEBSD... not found!! :D<br><br>I sugest add this:<br><br>{$IFDEF FREEBSD}<br>
QtIntf  = 'libqt4intf.so';<br>
{$ENDIF}<br><br><br>Fabio Luis Girardi<br><br><br><div><span class="gmail_quote">2007/12/2, Den Jean <<a href="mailto:Den.Jean@telenet.be">Den.Jean@telenet.be</a>>:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On Saturday 01 December 2007 12:28:21 pm <a href="mailto:papelhigienico@gmail.com">papelhigienico@gmail.com</a> wrote:<br>> 6) Rebuild Lazarus without sucess... :(<br><br>in point 5 you succesfully got a libqt4intf.so ?. Great.
<br>So the rest is just compiling lazarus.<br><br>cd lazarus<br>make LCL_PLATFORM=qt clean all OPT=dUSE_QT_4_3<br><br>and look at output<br><br>The option USE_QT_4_3 is if you use the Qt 4.3.1 libs.<br>Do not add it if you used the Qt 
4.2.3 libs.<br><br>Did you put llibQtCore.so.4 and libQtGui.so.4 in /usr/local/lib as well ?<br>and ran ldconfig or the bsd equivalent ?<br><br>The resulting executable ofcourse depends on Qt :-)<br><br> ldd ./lazarus | grep -i qt
<br>        libqt4intf.so => /usr/lib/libqt4intf.so (0xb7d21000)<br>        libQtCore.so.4 => /usr/lib/qt4/lib/libQtCore.so.4 (0xb7a51000)<br>        libQtGui.so.4 => /usr/lib/qt4/lib/libQtGui.so.4 (0xb7294000)<br>
<br>(/usr/lib on my system)<br><br><br>regards,<br><br>Den Jean<br>_______________________________________________<br>fpc-pascal maillist  -  <a href="mailto:fpc-pascal@lists.freepascal.org">fpc-pascal@lists.freepascal.org
</a><br><a href="http://lists.freepascal.org/mailman/listinfo/fpc-pascal">http://lists.freepascal.org/mailman/listinfo/fpc-pascal</a><br></blockquote></div><br>