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 26 27 28 29 30 31 32 33 34 35 36
|
/*
* The Progressive Graphics File; http://www.libpgf.org
*
* This file Copyright (C) 2000-2015 xeraina GmbH, Switzerland
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
Remark: The make process uses autoconf / automake / libtool.
To compile and install the library, do the following:
0.1 create folder 'm4' if not already available
0.2 dos2unix *.* helps, if configure stops with "cannot fine input file Makefile.in"
0.3 'autoreconf -i' : instead of calling libtoolize, aclocal, autoheader, autoconf, automake
1.1 './configure'
1.2 './configure --help' : gives you more information
2. 'make' : compiles a shared and a static library
3. 'sudo make install' : installs the library
4. 'sudo ldconfig' : makes the new library visible in the system
Note: As this build process uses libtool there is a library interface created by
libtool. This interface is libpgf.la, the static library itself is in libpgf.a
and the shared library iteslf is in libpgf.so.x.y. All these files are needed.
For more information see: http://www.gnu.org/software/libtool
|