diff options
author | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-10-17 10:51:16 +0100 |
---|---|---|
committer | Graeme Geldenhuys <graeme@mastermaths.co.za> | 2012-10-17 10:51:16 +0100 |
commit | 6f5e7573e297bb1aa10cbed1b8172b427205b402 (patch) | |
tree | f2b3ee3c76192ff9045fce2407fb88dac0af28e6 | |
parent | 565743583b0b30ede78dcc6b21c43345a725ccf4 (diff) | |
download | fpGUI-6f5e7573e297bb1aa10cbed1b8172b427205b402.tar.xz |
Fixes copyright notice, description, licensing and minor code formatting in fpmake build program.
-rw-r--r-- | src/fpmake.pp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/fpmake.pp b/src/fpmake.pp index 23df4728..616f7f8b 100644 --- a/src/fpmake.pp +++ b/src/fpmake.pp @@ -1,7 +1,7 @@ { fpGUI - Free Pascal GUI Toolkit - Copyright (C) 2006 - 2010 See the file AUTHORS.txt, included in this + Copyright (c) 2006 - 2012 See the file AUTHORS.txt, included in this distribution, for details of the copyright. See the file COPYING.modifiedLGPL, included in this distribution, @@ -12,9 +12,9 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Description: - This program is kindly supplied by Henry Vermaak. It uses the new - fpmake build system introduced in FPC 2.2.2. fpmake is supposed to - replace the Makefile build system. + The original version of this program was kindly supplied by Henry + Vermaak. It uses the new fpmake build system introduced in FPC 2.2.2. + fpmake is supposed to replace the Makefile build system. Usage: - Compile fpmake.pas as follows: @@ -54,7 +54,7 @@ begin P.Version := FPGUI_VERSION; P.Author := 'Graeme Geldenhuys'; P.Email := 'graemeg@gmail.com'; - P.License := 'Modified LGPL'; + P.License := 'LGPL with linking exception'; P.Description := 'fpGUI Toolkit - a custom written GUI toolkit for Free Pascal.'; // P.Dependencies.Add('fcl'); @@ -192,14 +192,14 @@ begin T := P.Targets.AddUnit('fpg_trackbar.pas'); T := P.Targets.AddUnit('fpg_button.pas'); T := P.Targets.AddUnit('fpg_dialogs.pas'); - T.Dependencies.AddInclude('charmapdialog.inc'); - T.Dependencies.AddInclude('colordialog.inc'); - T.Dependencies.AddInclude('inputquerydialog.inc'); - T.Dependencies.AddInclude('messagedialog.inc'); - T.Dependencies.AddInclude('newdirdialog.inc'); - T.Dependencies.AddInclude('promptuserdialog.inc'); - T.Dependencies.AddInclude('selectdirdialog.inc'); - T.Dependencies.AddInclude('logo.inc'); + T.Dependencies.AddInclude('charmapdialog.inc'); + T.Dependencies.AddInclude('colordialog.inc'); + T.Dependencies.AddInclude('inputquerydialog.inc'); + T.Dependencies.AddInclude('messagedialog.inc'); + T.Dependencies.AddInclude('newdirdialog.inc'); + T.Dependencies.AddInclude('promptuserdialog.inc'); + T.Dependencies.AddInclude('selectdirdialog.inc'); + T.Dependencies.AddInclude('logo.inc'); T := P.Targets.AddUnit('fpg_gauge.pas'); T := P.Targets.AddUnit('fpg_iniutils.pas'); T := P.Targets.AddUnit('fpg_memo.pas'); |