lazutils: sanity check macros

git-svn-id: trunk@47105 -
This commit is contained in:
mattias 2014-12-04 18:11:56 +00:00
parent 233243e167
commit e2c1838d3d
2 changed files with 9 additions and 2 deletions

View File

@ -1,4 +1,3 @@
{ $Id$ }
{
/***************************************************************************
FPCAdds.pas
@ -17,6 +16,10 @@ unit FPCAdds;
{$mode objfpc}{$H+}{$inline on}
{$IF defined(EnableUTF8RTL) and (FPC_FULLVERSION<20701)}
{$error UTF8 RTl requires fpc 2.7.1+}
{$ENDIF}
interface
uses

View File

@ -16,7 +16,11 @@
}
unit LazUTF8;
{$mode objfpc}{$H+}
{$mode objfpc}{$H+}{$inline on}
{$IF defined(EnableUTF8RTL) and (FPC_FULLVERSION<20701)}
{$error UTF8 RTl requires fpc 2.7.1+}
{$ENDIF}
interface