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
[EMAIL PROTECTED]         -./\.-  the opinion of Baker Hughes or
http://www.crosswinds.net/~petef  -./\.-  its divisions.

Reply via email to