dbTalk Databases Forums  

Fwd: Problem installing Postgresql on MDK10.0

comp.databases.postgresql.general comp.databases.postgresql.general


Discuss Fwd: Problem installing Postgresql on MDK10.0 in the comp.databases.postgresql.general forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Alejandro D. Burne
 
Posts: n/a

Default Fwd: Problem installing Postgresql on MDK10.0 - 11-16-2004 , 10:39 AM






Sorry, but no reply on pgsql-ports (AT) postgresql (DOT) org.

---------- Forwarded message ----------
From: Alejandro D. Burne <alejandro.dburne (AT) gmail (DOT) com>
Date: Mon, 15 Nov 2004 15:00:58 +0100
Subject: Problem installing Postgresql on MDK10.0
To: pgsql-ports (AT) postgresql (DOT) org


I'll be trying to install postgres 8.0b1/b4; when I make the config a
message appear:

"configure: error: readline library not found"

$ rpm -qa | grep readline
libreadline4-4.3-7mdk
libreadline4-devel-4.3-7mdk

Then I try;

$ ./configure --with-libraries=/lib --with-includes=/usr/include/readline
(where the libs are)

I read a message from Tom Lane talking about termcap, it's installed too.

The same problem occurs with zlib.

I fix it skipping both libs with

../configure --without-readline --without-zlib

but...

Alejandro

---------------------------(end of broadcast)---------------------------
TIP 8: explain analyze is your friend


Reply With Quote
  #2  
Old   
Tom Lane
 
Posts: n/a

Default Re: Fwd: Problem installing Postgresql on MDK10.0 - 11-16-2004 , 12:17 PM






"Alejandro D. Burne" <alejandro.dburne (AT) gmail (DOT) com> writes:
Quote:
I'll be trying to install postgres 8.0b1/b4; when I make the config a
message appear:

"configure: error: readline library not found"

$ rpm -qa | grep readline
libreadline4-4.3-7mdk
libreadline4-devel-4.3-7mdk
Try looking at the config.log output in the part where it's trying to
find readline (should be near the end); the link error messages may be
enlightening. If not, try "ldd" on the readline library file to see
what its dependencies are --- the best theory I have is that you are
missing some library it requires. (It ain't necessarily termcap.)
Of course if you are this would indicate a packaging mistake for
libreadline, because it should have had an RPM dependency on whatever
it needs.

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faqs/FAQ.html



Reply With Quote
  #3  
Old   
Bernd Helmle
 
Posts: n/a

Default Re: Fwd: Problem installing Postgresql on MDK10.0 - 11-16-2004 , 02:43 PM



--On Dienstag, November 16, 2004 17:39:12 +0100 "Alejandro D. Burne"
<alejandro.dburne (AT) gmail (DOT) com> wrote:

Quote:
Sorry, but no reply on pgsql-ports (AT) postgresql (DOT) org.

---------- Forwarded message ----------
From: Alejandro D. Burne <alejandro.dburne (AT) gmail (DOT) com
Date: Mon, 15 Nov 2004 15:00:58 +0100
Subject: Problem installing Postgresql on MDK10.0
To: pgsql-ports (AT) postgresql (DOT) org


I'll be trying to install postgres 8.0b1/b4; when I make the config a
message appear:

running MDK 10.0, but no problem here (and never had).

Quote:
"configure: error: readline library not found"

$ rpm -qa | grep readline
libreadline4-4.3-7mdk
libreadline4-devel-4.3-7mdk

Then I try;

$ ./configure --with-libraries=/lib --with-includes=/usr/include/readline
(where the libs are)
Try running "ldconfig" and look if /lib contains valid links to
libreadline.so.4(.3). Also try ldconfig -p to examine the linker cache
then. /lib looks like this on my MDK 10.0 installation then:

libreadline.so -> libreadline.so.4.3
libreadline.so.4 -> libreadline.so.4.3
libreadline.so.4.1 -> ../lib/libreadline.so.4
libreadline.so.4.2 -> ../lib/libreadline.so.4
libreadline.so.4.3

[...]



--

Bernd

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster



Reply With Quote
  #4  
Old   
Ben Trewern
 
Posts: n/a

Default Re: Fwd: Problem installing Postgresql on MDK10.0 - 11-17-2004 , 03:20 AM



I think you have to install ncurses. On Mdk 10 its libncurses5-devel I
think.

Try that and see what happens.

Regards,

Ben



---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faqs/FAQ.html


Reply With Quote
  #5  
Old   
Kaloyan Iliev Iliev
 
Posts: n/a

Default Re: Fwd: Problem installing Postgresql on MDK10.0 - 11-17-2004 , 04:49 AM



Hi,

I have the same problem and I solved it. This question then was asked
and I answer it. Try looking at the google and you will find it.
In general - Open the package manager and searche for keyword "redline".
The neccessary library will apper and you just will have to install it.

Regards,

Kaloyan

Alejandro D. Burne wrote:

Quote:
Sorry, but no reply on pgsql-ports (AT) postgresql (DOT) org.

---------- Forwarded message ----------
From: Alejandro D. Burne <alejandro.dburne (AT) gmail (DOT) com
Date: Mon, 15 Nov 2004 15:00:58 +0100
Subject: Problem installing Postgresql on MDK10.0
To: pgsql-ports (AT) postgresql (DOT) org


I'll be trying to install postgres 8.0b1/b4; when I make the config a
message appear:

"configure: error: readline library not found"

$ rpm -qa | grep readline
libreadline4-4.3-7mdk
libreadline4-devel-4.3-7mdk

Then I try;

$ ./configure --with-libraries=/lib --with-includes=/usr/include/readline
(where the libs are)

I read a message from Tom Lane talking about termcap, it's installed too.

The same problem occurs with zlib.

I fix it skipping both libs with

./configure --without-readline --without-zlib

but...

Alejandro

---------------------------(end of broadcast)---------------------------
TIP 8: explain analyze is your friend




---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings



Reply With Quote
  #6  
Old   
Alejandro D. Burne
 
Posts: n/a

Default Re: Fwd: Problem installing Postgresql on MDK10.0 - 11-17-2004 , 07:14 AM



Thanks Ben, libncures5 was installed but libncurses5-devel don't.
Problem solved! I must find zlib deps now ;+)


On Wed, 17 Nov 2004 09:20:00 +0000, Ben Trewern <ben_trewern (AT) hotmail (DOT) com> wrote:
Quote:
I think you have to install ncurses. On Mdk 10 its libncurses5-devel I
think.

Try that and see what happens.

Regards,

Ben

---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faqs/FAQ.html

---------------------------(end of broadcast)---------------------------
TIP 9: the planner will ignore your desire to choose an index scan if your
joining column's datatypes do not match



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.