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

Now forces a disable of dynamic loading on AIX-cc.

Rev: src/configure.in:1.129
parent f0bc95c3
No related branches found
No related tags found
No related merge requests found
AC_REVISION("$Id: configure.in,v 1.128 1997/10/08 22:43:36 grubba Exp $") AC_REVISION("$Id: configure.in,v 1.129 1997/10/15 04:17:48 grubba Exp $")
AC_INIT(interpret.c) AC_INIT(interpret.c)
AC_CONFIG_HEADER(machine.h) AC_CONFIG_HEADER(machine.h)
...@@ -86,6 +86,7 @@ AC_ARG_WITH(threads, [ --without-threads no threads support],[],[with_thre ...@@ -86,6 +86,7 @@ AC_ARG_WITH(threads, [ --without-threads no threads support],[],[with_thre
AC_ARG_WITH(zlib, [ --without-zlib no gz compression support],[],[with_zlib=yes]) AC_ARG_WITH(zlib, [ --without-zlib no gz compression support],[],[with_zlib=yes])
AC_ARG_WITH(ssleay, [ --without-ssleay no support for the secure socket protocol],[],[with_ssleay=yes]) AC_ARG_WITH(ssleay, [ --without-ssleay no support for the secure socket protocol],[],[with_ssleay=yes])
AC_ARG_WITH(mysql, [ --without-mysql no support for the Mysql database],[],[with_mysql=yes]) AC_ARG_WITH(mysql, [ --without-mysql no support for the Mysql database],[],[with_mysql=yes])
AC_ARG_WITH(profiling, [ --with-profiling add code used to profile pike code ],[AC_DEFINE(PROFILING)],[])
if test x$with_debug = xyes ; then if test x$with_debug = xyes ; then
AC_DEFINE(DEBUG) AC_DEFINE(DEBUG)
...@@ -1600,6 +1601,11 @@ then ...@@ -1600,6 +1601,11 @@ then
LDSHARED="ld -G -bexpall" LDSHARED="ld -G -bexpall"
else else
# Dynamic linking turned off for AIX-cc # Dynamic linking turned off for AIX-cc
#
# In addition, the dynamic loading test seems to
# cause our RS/6000 to hang, which causes the
# watchdog-timer to PANIC.
pike_cv_sys_dynamic_loading=no
LDSHARED="ld" LDSHARED="ld"
fi fi
;; ;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment