From: Bruce Momjian Date: Sat, 14 Oct 2000 23:57:46 +0000 (+0000) Subject: This fixes a small problem with identifying -lbind as required for X-Git-Tag: REL7_1_BETA~471 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c145712fb9d7c778f32992e069d7834d50ea57a;p=postgresql This fixes a small problem with identifying -lbind as required for BeOS. David Reid --- diff --git a/configure.in b/configure.in index 2641ce6d51..81e007391d 100644 --- a/configure.in +++ b/configure.in @@ -630,7 +630,8 @@ AC_CHECK_LIB(gen, main) 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])])