From: | Pete Forman <gsez020(at)kryten(dot)bedford(dot)waii(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | pgsql-hackers(at)postgresql(dot)org, Larry Rosenman <ler(at)lerctr(dot)org> |
Subject: | Re: Re: Add support for <xti.h> |
Date: | 2000-10-25 09:37:31 |
Message-ID: | 14838.43483.214842.709047@kryten.bedford.waii.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Tom Lane writes:
> >> This is an IRIX bug but I think that we need to work around it.
>
> > Roger, will do.
>
> I have changed configure in the CVS repository to test for
> netinet/tcp.h per your recommendation. At your convenience, please
> verify that it really does do the right thing on IRIX.
Yes, that works.
There is a separate problem running the configure script on AIX. It
hangs while testing for flex. The two processes that I killed to
allow configure to continue were
/usr/ccs/bin/lex --version
/usr/bin/lex --version
The problem is that lex is waiting for input from stdin. This patch
should fix it. I've only tested modification of the configure file
directly.
*** config/programs.m4.orig Mon Aug 28 12:53:13 2000
--- config/programs.m4 Wed Oct 25 10:20:31 2000
***************
*** 22,28 ****
for pgac_prog in flex lex; do
pgac_candidate="$pgac_dir/$pgac_prog"
if test -f "$pgac_candidate" \
! && $pgac_candidate --version >/dev/null 2>&1
then
echo '%%' > conftest.l
if $pgac_candidate -t conftest.l 2>/dev/null | grep FLEX_SCANNER >/dev/null 2>&1; then
--- 22,28 ----
for pgac_prog in flex lex; do
pgac_candidate="$pgac_dir/$pgac_prog"
if test -f "$pgac_candidate" \
! && $pgac_candidate --version </dev/null >/dev/null 2>&1
then
echo '%%' > conftest.l
if $pgac_candidate -t conftest.l 2>/dev/null | grep FLEX_SCANNER >/dev/null 2>&1; then
--
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.
From | Date | Subject | |
---|---|---|---|
Next Message | Larry Rosenman | 2000-10-25 09:45:10 | --with-perl=/path/to/prefered/perl? |
Previous Message | DaVinci | 2000-10-25 08:47:58 | A rare error |