The sources of the Free Pascal compiler, RTL, packages and utilities. See https://www.freepascal.org/ for more info.
Go to file
peter a540ff122c * tdicationary.replace added to replace and item in a dictionary. This
is only allowed for the same name
  * varsyms are inserted in symtable before the types are parsed. This
    fixes the long standing "var longint : longint" bug
  - consume_idlist and idstringlist removed. The loops are inserted
    at the callers place and uses the symtable for duplicate id checking
2002-09-09 17:34:14 +00:00
compiler * tdicationary.replace added to replace and item in a dictionary. This 2002-09-09 17:34:14 +00:00
demo * old logs removed and tabs fixed 2002-09-07 15:06:34 +00:00
docs * bugfix for report 1790 2002-09-08 15:07:46 +00:00
fcl * correct termination of thread 2002-09-07 21:03:37 +00:00
fv * remove virtual modifer from store methods 2002-09-09 08:14:47 +00:00
fvision * remove virtual modifer from store methods 2002-09-09 08:14:47 +00:00
ide * avoid a int64 warning 2002-09-09 07:06:53 +00:00
install + OS/2 install.exe & TZ variable 2002-07-07 20:09:47 +00:00
installer * old logs removed and tabs fixed 2002-09-07 15:40:30 +00:00
packages * fixed linux unit for 1.1 compilers 2002-09-09 17:25:40 +00:00
rtl * made result type of calculate_release_sig() a longword instead of a 2002-09-09 15:45:49 +00:00
tests * some extra int64 - int64 tests for RISC processors 2002-09-08 20:29:36 +00:00
utils * old logs removed and tabs fixed 2002-09-07 15:40:30 +00:00
Makefile * Some more OpenBSD fixes. 2002-08-01 12:28:49 +00:00
Makefile.fpc * Netbsd and Openbsd targets. + build IDE for FreeBSD 2002-08-01 11:57:44 +00:00

This is the README for the Free Pascal documentation.

All documentation is stored here, in LaTeX format. 
it uses special style files (fpc*.sty) which are also in the directory.

do a 'make dvi' to produce the dvi format of the docs.
a 'make html' will produce the html version (using latex2html).
a 'make ps' will produce PostScript documents.
a 'make pdf' will produce PDF (Portable Document Format) documents.
a 'make txt' will produce plain text documents.

If you want to produce dos docs, you can do a 'make htm' this will convert
the .html files to .htm files (including all references), suitable for a 8:3
format.

The rest of this document is only interesting if you want to write docs.
Otherwise, you can bail out now.

THE DOCS...

Why LaTeX ? 
- because I like a printed copy of the manuals, HTML just isn't good enough 
  for this.
- I know LaTeX very well :) (mind you : html also !)
- It converts to many other formats.
- many other reasons.

In order to translate the things to HTML, I use latex2html, since it is the
most powerful and flexible, although sluggish... 
For it to be able to use the fpc.sty, I had to write a fpc.perl script
which it loads. The script seems to run fine when used standalone, but in
conjunction with latex2html, I get a out of memory... ??
I'm not familiar with perl, so if someone is, and can fix the thing, please
do. (and let me know :) )

Then how to proceed ?
If you just want to write latex docs, just use fpc.sty. (you don't need
html.sty)
If you want to be able to convert to html, (you need html.sty) the following 
fixes the perl-problem :
In the preamble of  your document, type :

\usepackage{html}
\latex{\usepackage{fpc}}
\html{\input{fpc-html.tex}}

The fpc-html.tex defines the same commands as fpc.sty, only in a language
that latex2html understands.

fpc.sty.doc describes what fpc.sty does. (one day I'll integrate them using
the doc package, but I need some time for it)

Happy TeXing,
Michael.