Skip to content
Snippets Groups Projects
Commit f34e8f80 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Merge 'tags/bull_20001103': Now disables dynamic loading on HP-UX due to broken shl_load():

/usr/lib/dld.sl: Can't shl_load() a library containing Thread Local Storage: /usr/lib/libcl.2
Fixes [bug 650].
parents 1f8b7222 5199bbf5
No related branches found
No related tags found
No related merge requests found
# #
# $Id: configure.in,v 1.26 2000/11/01 14:22:05 grubba Exp $ # $Id: configure.in,v 1.27 2000/11/03 14:10:32 grubba Exp $
# #
# Configure script for the oracle module # Configure script for the oracle module
# #
...@@ -15,6 +15,14 @@ AC_ARG_WITH(oracle, [ --without-oracle no support for the Oracle databas ...@@ -15,6 +15,14 @@ AC_ARG_WITH(oracle, [ --without-oracle no support for the Oracle databas
if test x$with_oracle = xyes; then if test x$with_oracle = xyes; then
AC_MSG_CHECKING(if this is HP-UX)
if test "x$piks_cv_sys_os" = "xHP-UX"; then
AC_MSG_RESULT(yes - disabling dynamic loading for this module)
dynamic_module_makefile="$static_module_makefile"
else
AC_MSG_RESULT(no)
fi
AC_MSG_CHECKING(if \$ORACLE_HOME is set) AC_MSG_CHECKING(if \$ORACLE_HOME is set)
AC_CACHE_VAL(pike_cv_oracle_oracle_home, [ AC_CACHE_VAL(pike_cv_oracle_oracle_home, [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment