Re: Compiling on 8.1.3 on Openserver 5.05

From: Mark Campbell <mark(dot)campbell(at)ucs-software(dot)co(dot)za>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-ports(at)postgresql(dot)org
Subject: Re: Compiling on 8.1.3 on Openserver 5.05
Date: 2006-05-11 15:20:52
Message-ID: 44635654.6000904@ucs-software.co.za
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-hackers pgsql-ports

Searching through /usr/include with the following script:

for i in `find . *`
do
egrep "htonl|htons|ntohs" $i
if [ $? = 0 ]
then
echo $i
fi
done

I found the following:

extern u_short mdi_htons(u_short);
extern u_short mdi_ntohs(u_short);
in /usr/include/sys/mdi.h

u_long ntohl __P((u_long)), htonl __P((u_long));
u_short ntohs __P((u_short)), htons __P((u_short));
#define htonl(x) (x)
#define ntohs(x) (x)
#define htons(x) (x)
in /usr/include/sys/byteorder.h

#define IXDR_PUT_LONG(buf, v) (*(buf)++ = (long)htonl((ulong)v))
in /usr/include/rpc/xdr.h

Nothing was found in /usr/local/include

The problem I had with configure, was that gcc could not find cc1

Mark Campbell

Confidentiality Notice: http://ucs.co.za/conf.html

Tom Lane wrote:
> Mark Campbell <mark(dot)campbell(at)ucs-software(dot)co(dot)za> writes:
>
>> getaddrinfo.c: In function `pg_getaddrinfo':
>> getaddrinfo.c:189: warning: implicit declaration of function `htonl'
>> getaddrinfo.c:211: `h_errno' undeclared (first use in this function)
>> getaddrinfo.c:211: (Each undeclared identifier is reported only once
>> getaddrinfo.c:211: for each function it appears in.)
>> getaddrinfo.c:215: warning: unreachable code at beginning of switch
>> statement
>> getaddrinfo.c:238: warning: implicit declaration of function `htons'
>> getaddrinfo.c: In function `pg_getnameinfo':
>> getaddrinfo.c:416: warning: implicit declaration of function `ntohs'
>>
>
> Hmm, looks like your system declares htonl() and friends in some other
> header file than where getaddrinfo.c is expecting. Grep through
> everything under /usr/include and see where these symbols are declared.
>
> BTW, what problems did you have with configure?
>
> regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 9: In versions below 8.0, the planner will ignore your desire to
> choose an index scan if your joining column's datatypes do not
> match
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Joshua D. Drake 2006-05-11 15:27:03 Re: Reindexdb
Previous Message Wayne Conrad 2006-05-11 15:14:38 Re: [GENERAL] Debugging SQL queries

Browse pgsql-hackers by date

  From Date Subject
Next Message Greg Stark 2006-05-11 15:35:34 Re: [HACKERS] Big IN() clauses etc : feature proposal
Previous Message Tom Lane 2006-05-11 15:03:12 Re: Compiling on 8.1.3 on Openserver 5.05

Browse pgsql-ports by date

  From Date Subject
Next Message Tom Lane 2006-05-11 17:22:57 Re: Compiling on 8.1.3 on Openserver 5.05
Previous Message Tom Lane 2006-05-11 15:03:12 Re: Compiling on 8.1.3 on Openserver 5.05