pgbouncer - pgbouncer: Build fixes for Solaris * Use __func__ and

From: mkz(at)pgfoundry(dot)org (User Mkz)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgbouncer - pgbouncer: Build fixes for Solaris * Use __func__ and
Date: 2008-06-25 14:47:55
Message-ID: 20080625144755.417A617AE6FB@pgfoundry.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Build fixes for Solaris

* Use __func__ and define it to __FUNCTION__ if not defined.
it's the C99 standard.

* Tests for certain linking libraries (libnsl, libsocket, libresolv) (configure.ac)

* Defines INADDR_NONE if not defined

* Search for <ucred.h> in addition to <sys/ucred.h> (configure.ac)

* Changes include of <sys/errno.h> to <errno.h>.
I _think_ this should be safe on all platforms (and it's the standard)

* Changes local variable name s_addr to saddr in takeover.c.
s_addr is a Single Unix Specification defined name.

* Checks if LOG_AUTHPRIV exists (it does not in Solaris)

Original patch by Magne Mhre, applied with minor changes

Modified Files:
--------------
pgbouncer:
configure.ac (r1.32 -> r1.33)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/configure.ac.diff?r1=1.32&r2=1.33)
pgbouncer/include:
system.h (r1.12 -> r1.13)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/include/system.h.diff?r1=1.12&r2=1.13)
util.h (r1.6 -> r1.7)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/include/util.h.diff?r1=1.6&r2=1.7)
pgbouncer/src:
system.c (r1.3 -> r1.4)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/src/system.c.diff?r1=1.3&r2=1.4)
takeover.c (r1.13 -> r1.14)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/src/takeover.c.diff?r1=1.13&r2=1.14)
util.c (r1.23 -> r1.24)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/src/util.c.diff?r1=1.23&r2=1.24)

Browse pgsql-committers by date

  From Date Subject
Next Message User Mkz 2008-06-25 14:53:28 pgbouncer - pgbouncer: include both pwd.h and grp.h in system.c and
Previous Message User Dpage 2008-06-25 12:15:38 stackbuilder - wizard: Read registry keys in a more fault-tolerant