Re: pkg of 7.0.2 for SunOS 5.6?

From: Pete Forman <gsez020(at)kryten(dot)bedford(dot)waii(dot)com>
To: pgsql-ports(at)postgresql(dot)org
Subject: Re: pkg of 7.0.2 for SunOS 5.6?
Date: 2000-09-04 07:48:23
Message-ID: 14771.21447.998570.147497@kryten.bedford.waii.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-ports

David Wetzel writes:
> has someone here made binaries for SunOS 5.6 (Sparc)?

Yes, I have. They are not packaged up though.

There was one problem in building it. The configure script tests for
the availability of libraries, -lld amongst them. There is an odd
problem with that library, it links fine but fails to run. configure
adds -lld to its list of libs which makes later tests fail.

I hacked the configure to bypass the problem.

$ diff configure configure.hack
3159c3159
< if { (eval echo configure:3160: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
---
> if { (eval echo configure:3160: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && false; then

A better fix would be to beef up the configure test so that tests for
libs make sure that the test executables run as well as link.

There were various random failures on the regression tests. This is
probably due to the poor UNIX domain sockets on Solaris. Using TCP/IP
there were no problems.
--
Pete Forman -./\.- Disclaimer: This post is originated
Western Geophysical -./\.- by myself and does not represent
pete(dot)forman(at)westgeo(dot)com -./\.- the opinion of Baker Hughes or
http://www.crosswinds.net/~petef -./\.- its divisions.

In response to

Browse pgsql-ports by date

  From Date Subject
Next Message Thomas Lockhart 2000-09-06 05:24:14 Re: Redhat 6.2 RPM?
Previous Message David Wetzel 2000-09-03 22:30:38 pkg of 7.0.2 for SunOS 5.6?