--- trunk/doc/Search.pm 2005/08/28 18:29:44 94 +++ trunk/doc/Search.pm 2005/08/30 09:55:43 96 @@ -25,8 +25,16 @@ This extension is based on PostgreSQL RDBMS and HyperEstraier full-text search engine (and it's perl bindings). -So, you will need to install additional packages which is described in -following procedure. +If you are using Debian, you are in luck. All required packages are +allready part of C distribution and can be installed with: + + # apt-get install postgresql + # apt-get install hyperestraier libestraier-dev libqdbm-dev + +Now you can skip to installation of HyperEstraier perl bindings below. + +If you don't have pre-packaged binaries for your installation, you will +need to install additional packages by hand. =over 4 @@ -80,7 +88,8 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'HyperEstraier', - LIBS => [sprintf('-lstdc++ %s %s' , `estconfig --libs`)], + INC => sprintf('%s', `pkg-config --cflags hyperestraier`), + LIBS => [sprintf('-lstdc++ %s %s' , `pkg-config --libs hyperestraier`)], OBJECT => 'HyperEstraierWrapper.o HyperEstraier_wrap.o' );