mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-28 09:01:33 +02:00
added support for haiku from olivier (issue #15519)
git-svn-id: trunk@23829 -
This commit is contained in:
parent
5141759d58
commit
efa3daf8eb
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -3444,6 +3444,7 @@ ide/imexportcompileropts.lfm svneol=native#text/plain
|
||||
ide/imexportcompileropts.pas svneol=native#text/pascal
|
||||
ide/include/darwin/lazconf.inc svneol=native#text/pascal
|
||||
ide/include/freebsd/lazconf.inc svneol=native#text/pascal
|
||||
ide/include/haiku/lazconf.inc svneol=native#text/plain
|
||||
ide/include/ide.inc svneol=native#text/pascal
|
||||
ide/include/linux/lazconf.inc svneol=native#text/pascal
|
||||
ide/include/netbsd/lazconf.inc svneol=native#text/pascal
|
||||
|
41
ide/include/haiku/lazconf.inc
Normal file
41
ide/include/haiku/lazconf.inc
Normal file
@ -0,0 +1,41 @@
|
||||
// included by lazconf.pp
|
||||
|
||||
{***************************************************************************
|
||||
lazconf.inc
|
||||
|
||||
haiku specific include file for the IDE
|
||||
|
||||
***************************************************************************
|
||||
|
||||
***************************************************************************
|
||||
* *
|
||||
* This source is free software; you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU General Public License as published by *
|
||||
* the Free Software Foundation; either version 2 of the License, or *
|
||||
* (at your option) any later version. *
|
||||
* *
|
||||
* This code is distributed in the hope that it will be useful, but *
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
||||
* General Public License for more details. *
|
||||
* *
|
||||
* A copy of the GNU General Public License is available on the World *
|
||||
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
|
||||
* obtain it by writing to the Free Software Foundation, *
|
||||
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||
* *
|
||||
***************************************************************************
|
||||
}
|
||||
|
||||
{For Haiku specific implementations.
|
||||
General unix implementations are in ../unix/lazbaseconf.inc}
|
||||
uses
|
||||
BaseUnix, Unix;
|
||||
|
||||
procedure GetDefaultLCLLibPaths(List: TStrings);
|
||||
begin
|
||||
end;
|
||||
|
||||
{$I ../unix/lazbaseconf.inc}
|
||||
|
||||
|
@ -19,6 +19,10 @@ const
|
||||
QtIntf = 'libqt4intf.dll';
|
||||
{$ENDIF}
|
||||
|
||||
{$IFDEF HAIKU}
|
||||
QtIntf = 'libqt4intf.so.5';
|
||||
{$ENDIF}
|
||||
|
||||
// Set qtopia yourself if using QTOPIA with QVFB on i386
|
||||
// ppc386 -dQTOPIA
|
||||
{$IFDEF CPUARM}
|
||||
|
Loading…
Reference in New Issue
Block a user