mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-14 10:20:45 +02:00
* initial revision
git-svn-id: trunk@5351 -
This commit is contained in:
parent
0c314a6485
commit
2005490239
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -470,6 +470,7 @@ ide/ideprocs.pp svneol=native#text/pascal
|
||||
ide/imexportcompileropts.lfm svneol=native#text/plain
|
||||
ide/imexportcompileropts.lrs svneol=native#text/pascal
|
||||
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/ide.inc svneol=native#text/pascal
|
||||
ide/include/linux/lazconf.inc svneol=native#text/pascal
|
||||
|
94
ide/include/darwin/lazconf.inc
Normal file
94
ide/include/darwin/lazconf.inc
Normal file
@ -0,0 +1,94 @@
|
||||
// included by lazconf.pp
|
||||
|
||||
{***************************************************************************
|
||||
lazconf.inc
|
||||
|
||||
freebsd 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. *
|
||||
* *
|
||||
***************************************************************************
|
||||
}
|
||||
|
||||
{Should become unit Unix in the future. For both Linux and FreeBSD}
|
||||
uses
|
||||
{$IFNDEF VER1_0}
|
||||
BaseUnix,unix;
|
||||
{$ELSE}
|
||||
linux;
|
||||
{$ENDIF}
|
||||
|
||||
function GetDefaultTargetOS: string;
|
||||
begin
|
||||
Result:='darwin';
|
||||
end;
|
||||
|
||||
{$I ../unix/lazbaseconf.inc}
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.1 2004/03/29 20:09:06 florian
|
||||
* initial revision
|
||||
|
||||
Revision 1.14 2003/12/20 01:20:52 mattias
|
||||
splitted output directories for cross compilation
|
||||
|
||||
Revision 1.13 2003/11/04 11:47:37 marco
|
||||
* 1.1 fixes
|
||||
|
||||
Revision 1.12 2003/11/03 16:57:47 peter
|
||||
* change $ifdef ver1_1 to $ifndef ver1_0 so it works also with
|
||||
fpc 1.9.x
|
||||
|
||||
Revision 1.11 2003/08/15 14:01:20 mattias
|
||||
combined lazconf things for unix
|
||||
|
||||
Revision 1.10 2003/03/26 11:39:08 mattias
|
||||
fixed rtl include path
|
||||
|
||||
Revision 1.9 2003/02/07 17:49:21 mattias
|
||||
added ReadAllLinks
|
||||
|
||||
Revision 1.8 2003/02/06 20:46:51 mattias
|
||||
default fpc src dirs and clean ups
|
||||
|
||||
Revision 1.7 2002/12/20 11:08:47 mattias
|
||||
method resolution clause, class ancestor find declaration, 1.1. makros
|
||||
|
||||
Revision 1.6 2002/07/01 05:53:31 lazarus
|
||||
MG: improved default make path for build lazarus
|
||||
|
||||
Revision 1.5 2002/05/10 06:57:51 lazarus
|
||||
MG: updated licenses
|
||||
|
||||
Revision 1.4 2001/12/16 22:24:55 lazarus
|
||||
MG: changes for new compiler 20011216
|
||||
|
||||
Revision 1.3 2001/12/10 08:44:23 lazarus
|
||||
MG: added search for compiler, if not set
|
||||
|
||||
Revision 1.2 2001/05/27 11:52:01 lazarus
|
||||
MG: added --primary-config-path=<filename> cmd line option
|
||||
|
||||
Revision 1.1 2001/01/14 20:50:23 marco
|
||||
* Initial version. Same as Linux, and probably will be that way.
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user