mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Renable threading build for Solaris 2.5, per report from Andrew Chernow
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
dnl $PostgreSQL: pgsql/configure.in,v 1.585 2009/01/11 18:02:17 tgl Exp $
|
||||
dnl $PostgreSQL: pgsql/configure.in,v 1.586 2009/01/14 16:39:58 momjian Exp $
|
||||
dnl
|
||||
dnl Developers, please strive to achieve this order:
|
||||
dnl
|
||||
@ -870,6 +870,12 @@ AC_SEARCH_LIBS(getopt_long, [getopt gnugetopt])
|
||||
AC_SEARCH_LIBS(crypt, crypt)
|
||||
# Solaris:
|
||||
AC_SEARCH_LIBS(fdatasync, [rt posix4])
|
||||
# Required for thread_test.c on Solaris 2.5:
|
||||
case $host_os in
|
||||
solaris*)
|
||||
AC_SEARCH_LIBS(gethostbyname_r, nsl)
|
||||
;;
|
||||
esac
|
||||
# Cygwin:
|
||||
AC_SEARCH_LIBS(shmget, cygipc)
|
||||
|
||||
|
Reference in New Issue
Block a user