1
0
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:
Bruce Momjian
2009-01-14 16:39:58 +00:00
parent 08585dcf13
commit 62f09e92be
2 changed files with 95 additions and 1 deletions

View File

@ -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)