~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to fcl/passrc/readme.txt

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Pascal Source File Processing Units
2
 
===================================
3
 
 
4
 
(c) 2000-2003 Areca Systems GmbH / Sebastian Guenther, sg@freepascal.org
5
 
 
6
 
This directory contains some useful units for dealing with Pascal source
7
 
files: Parsing, creating structures in memory, and output to files.
8
 
 
9
 
 
10
 
pastree.pp
11
 
----------
12
 
Pascal parse tree classes, for storing a complete Pascal module in memory.
13
 
Currently, mainly declarations are supported; support for implementation
14
 
code is very basic.
15
 
 
16
 
 
17
 
paswrite.pp
18
 
-----------
19
 
A class and helper functions for creating Pascal source files from parse trees
20
 
 
21
 
 
22
 
pscanner.pp
23
 
-----------
24
 
Lexical scanner class for Pascal sources
25
 
 
26
 
 
27
 
pparser.pp
28
 
----------
29
 
Parser for Pascal source files. Reads files via the pscanner unit and stores
30
 
all parsed data in a parse tree, as implemented in the pastree unit.