correctly identify libraries for BeOS

Поиск
Список
Период
Сортировка
От David Reid
Тема correctly identify libraries for BeOS
Дата
Msg-id 200010141651.e9EGpA224150@www.jetnet.co.uk
обсуждение исходный текст
Ответы Re: correctly identify libraries for BeOS  (Peter Eisentraut <peter_e@gmx.net>)
Re: correctly identify libraries for BeOS  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-patches
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])])

В списке pgsql-patches по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: src/backend/commands/sequence.c
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: correctly identify libraries for BeOS