1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
{
Copyright 1998-2018 PasDoc developers.
This file is part of "PasDoc".
"PasDoc" 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.
"PasDoc" 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.
You should have received a copy of the GNU General Public License
along with "PasDoc"; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
----------------------------------------------------------------------------
}
{$I pasdoc_versions.inc}
{$IFDEF COMPILER_7_UP}
{$WARN UNSAFE_CAST OFF}
{$WARN UNSAFE_CODE OFF}
{$WARN UNSAFE_TYPE OFF}
(* Disables .NET warnings for Delphi 7 and later. *)
{ USE_BUFFERED_STREAM MUST be defined if STRING_UNICODE is defined as well. }
{$DEFINE USE_BUFFERED_STREAM}
{$IFDEF COMPILER_10_UP}
{$DEFINE USE_INLINE}
{$IFDEF COMPILER_12_UP}
{$DEFINE STRING_UNICODE}
{$IFNDEF DELPHI_15_UP}
{ Delphi 12 and 14 generated additional code for string }
{ compatibility with C++ Builder. }
{$STRINGCHECKS OFF}
{$ENDIF}
{$ENDIF}
{$ENDIF}
{$ENDIF} // Delphi
{$ifdef FPC}
{ Turn macro on to get FPC_VERSION, FPC_RELEASE, FPC_PATCH macros,
used in PasDoc.pas. Also to change "out" to "var" for FPC 1.0.x. }
{$macro on}
{$IFDEF VER2}
{$DEFINE USE_INLINE}
{$DEFINE USE_BUFFERED_STREAM}
{$ENDIF}
{$endif}
{ Detect regular expressions unit. }
{$ifdef FPC}
{ FPC RegExpr unit in FPC >= 2.6.0.
Earlier FPC versions have incompatible, and less complete, regexpr unit,
we do not use it for now. }
{$define FPC_RegExpr}
{$ifdef VER2_0} {$undef FPC_RegExpr} {$endif}
{$ifdef VER2_2} {$undef FPC_RegExpr} {$endif}
{$ifdef VER2_4} {$undef FPC_RegExpr} {$endif}
{$else}
{$IFDEF COMPILER_15_UP}
{$define DELPHI_RegularExpressions}
{$endif}
{$endif}
|