1libiptcdata
2===========
3
4    David Moore <dcm@acm.org>
5
6
7REQUIREMENTS
8------------
9
10libiptcdata is written in portable C code and has no prerequisite
11libraries.  It has been tested under GNU/Linux.
12
13INSTALLATION
14------------
15
16first run:
17
18  ./configure
19  make
20
21and as root:
22
23  make install
24
25
26Note: On Mac OS X, it has been reported that internationalization support
27in libiptcdata is often disabled at configure time because the libintl
28library cannot be found.  If you use a package installer such as Fink
29or DarwinPorts, you can obtain libintl by installing the gettext package and
30then running libiptcdata's configure script as:
31  ./configure --with-libintl-prefix=/sw --with-libiconv-prefix=/sw
32for Fink, or:
33  ./configure --with-libintl-prefix=/opt/local --with-libiconv-prefix=/opt/local
34for DarwinPorts.
35