Re: Issues cross-compiling libpq 14.x to MacOS armv8

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Issues cross-compiling libpq 14.x to MacOS armv8
Дата
Msg-id 1636357.1638307994@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Issues cross-compiling libpq 14.x to MacOS armv8  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Issues cross-compiling libpq 14.x to MacOS armv8  (Daniel Gustafsson <daniel@yesql.se>)
Re: Issues cross-compiling libpq 14.x to MacOS armv8  (Vincas Dargis <vindrg@gmail.com>)
Список pgsql-general
I wrote:
> It seems like a useful test when *not* cross compiling, which is most
> of the time.  I'd just wrap that bit in
>     if test "$cross_compiling" = no; then

Or actually, since we should print something, it looks like this will do:

diff --git a/configure.ac b/configure.ac
index a5c10b8d56..7257afda20 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2287,6 +2287,8 @@ if test x"$with_ssl" = x"openssl" ; then
   AC_MSG_RESULT([OpenSSL])
 elif test x"$PORTNAME" = x"win32" ; then
   AC_MSG_RESULT([Windows native])
+elif test x"$cross_compiling" = x"yes"; then
+  AC_MSG_RESULT([assuming /dev/urandom])
 else
   AC_MSG_RESULT([/dev/urandom])
   AC_CHECK_FILE([/dev/urandom], [], [])

Off to see if I can verify that before pushing.

            regards, tom lane



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Issues cross-compiling libpq 14.x to MacOS armv8
Следующее
От: Daniel Gustafsson
Дата:
Сообщение: Re: Issues cross-compiling libpq 14.x to MacOS armv8