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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
Thank you for downloading KPoGre !
KPoGre comes with abolutely no warranty and is still in BETA-stadium.
KPoGre is Open Source Software and developed under the GPL (see COPYING for details).
====================================================================
I have following lines in my .profile for SuSE 9.x/10.x:
export KDEDIR=/opt/kde3
export KDEDIRS=/opt/kde3
export QTDIR=/usr/lib/qt3
=====================================================================
KPoGre depends on libpqxx-3.0.0 (or newer) library. Obtain it from:
http://pqxx.org/development/libpqxx
=====================================================================
BUILD FROM tar.gz
=================
./configure --with-extra-includes="/usr/include/pqxx -I /usr/include/pgsql" --with-extra-lib=/usr/lib
make
make install
* specify paths for libpqxx library and your Postgres-headers
=======================================================================
BUILD FROM CVS
==============
gmake -f Makefile.dist
./configure --with-extra-includes="/usr/include/pqxx -I /usr/include/pgsql" --with-extra-lib=/usr/lib
make dist
make
make install
* specify paths for libpqxx library and your Postgres-headers
=======================================================================
BUILD ON 64 BIT PLATFORM
========================
Add ./configure option: --enable-libsuffix=64
Use --with-extra-lib=/usr/lib64
Lumir Vanek
lvanek@users.sourceforge.net
http://www.valachnet.cz/lvanek
=======================================================================
If you see message: ...ld: cannot find -lpq, then install
postgresql-devel package.
|