about summary refs log tree commit diff
path: root/urt/README
blob: 2cfbb3e2c3df490514d78b3f306f30149408e57a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
This directory contains a subset of the Utah Raster Toolkit library.

The source files are taken directly from that library, but only the ones
Netpbm needs, so the resulting librle.a is smaller than the original.

The files were extracted by Bryan Henderson on 2000.05.18, from a
package taken from ftp.iastate.edu/pub/utah-raster/ called urt-3.1b on
2000.04.13.

A user who has the original library installed can use it instead of
this stripped down version by configuring the make files
appropriately.

The source files have been modified slightly to quiet compiler warnings.

In rle_global.c, the global data structure rle_dflt_hdr had "stdout"
in its initializer in the original.  But GNU C Library Version 2
defines stdout as a variable, so that wouldn't compile.  So I changed
it to NULL and added a line to rle_hdr_init to set that field to
'stdout' dynamically.  2000.06.02 BJH.

---

Cleanup by Akira F Urushibata 2022.03.06
Unused functions removed.