Re: correctly identify libraries for BeOS

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: dreid(at)jetnet(dot)co(dot)uk
Cc: Patches for PGSQL <pgsql-patches(at)hub(dot)org>
Subject: Re: correctly identify libraries for BeOS
Date: 2000-10-14 23:57:51
Message-ID: 200010142357.TAA15991@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

Applied.

[ Charset ISO-8859-1 unsupported, converting... ]
> This fixes a small problem with identifying -lbind as required for
> BeOS.
>
> Index: configure.in
> ===================================================================
> RCS file: /home/projects/pgsql/cvsroot/pgsql/configure.in,v
> retrieving revision 1.58
> diff -u -u -r1.58 configure.in
> --- configure.in 2000/10/10 21:22:20 1.58
> +++ configure.in 2000/10/14 16:48:38
> @@ -630,7 +630,8 @@
> AC_CHECK_LIB(PW, main)
> AC_SEARCH_LIBS(crypt, crypt)
> AC_CHECK_LIB(z, inflate)
> -AC_SEARCH_LIBS(inet_ntoa, bind)
> +AC_SEARCH_LIBS(__inet_ntoa, bind)
> +
>
> if test "$with_krb4" = yes ; then
> AC_CHECK_LIB(des, [des_encrypt], [], [AC_MSG_ERROR([library \`des'
> is required for Kerberos 4])])
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

In response to

Browse pgsql-patches by date

  From Date Subject
Next Message Philip Warner 2000-10-15 00:11:24 Re: src/backend/commands/sequence.c
Previous Message Bruce Momjian 2000-10-14 23:57:00 Re: Add support for <xti.h>