Преглед изворни кода

+ Add license header to tuples, add to fpmake

Michaël Van Canneyt пре 10 месеци
родитељ
комит
149db318a0
2 измењених фајлова са 15 додато и 0 уклоњено
  1. 1 0
      packages/rtl-objpas/fpmake.pp
  2. 14 0
      packages/rtl-objpas/src/inc/tuples.pp

+ 1 - 0
packages/rtl-objpas/fpmake.pp

@@ -72,6 +72,7 @@ begin
     T:=P.Targets.AddUnit('system.math.vectors.pp',UItypesOSes);
       T.Dependencies.AddUnit('system.uitypes');
 
+    T:=P.Targets.AddUnit('tuples.pp');
     T:=P.Targets.AddUnit('strutils.pp',StrUtilsOses);
       T.ResourceStrings:=true;
     T:=P.Targets.AddUnit('syshelpers.pp',StrUtilsOses);

+ 14 - 0
packages/rtl-objpas/src/inc/tuples.pp

@@ -1,3 +1,17 @@
+{
+    This include file contains simple Tuples support for FPC
+
+    This file is part of the Free Pascal run time library.
+    Copyright (c) 2001-2005 by the Free Pascal development team
+
+    See the file COPYING.FPC, included in this distribution,
+    for details about the copyright.
+
+    This program 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.
+
+ **********************************************************************}
 {$IFNDEF FPC_DOTTEDUNITS}
 unit tuples;
 {$ENDIF FPC_DOTTEDUNITS}