diff options
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 9fba297a17a..8650e126e86 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -dnl $Header: /cvsroot/pgsql/configure.in,v 1.192 2002/07/18 04:13:59 momjian Exp $ +dnl $Header: /cvsroot/pgsql/configure.in,v 1.193 2002/07/19 17:35:09 momjian Exp $ dnl dnl Developers, please strive to achieve this order: dnl @@ -932,6 +932,13 @@ case $host_os in esac AC_SUBST(DLLINIT) +# Set path of qsort for solaris, which has a very slow qsort in certain cases. +QSORT="" +case $host_os in + solaris*) DLLINIT='$(top_builddir)/src/backend/port/qsort.o' ;; +esac +AC_SUBST(QSORT) + # On HPUX 9, rint() is not in regular libm.a but in /lib/pa1.1/libm.a; # this hackery with HPUXMATHLIB allows us to cope. HPUXMATHLIB="" |
