From 06afc8a26ac8799c5207c1d1eff2b210b44f5ce6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Wed, 15 Oct 1997 06:17:48 +0200
Subject: [PATCH] Now forces a disable of dynamic loading on AIX-cc.

Rev: src/configure.in:1.129
---
 src/configure.in | 24 +++++++++++++++---------
 1 file changed, 15 insertions(+), 9 deletions(-)

diff --git a/src/configure.in b/src/configure.in
index 5b9cb8351d..116339ed58 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -1,4 +1,4 @@
-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_CONFIG_HEADER(machine.h)
 
@@ -78,14 +78,15 @@ esac
 
 
 AC_ARG_WITH(dynamic_modules,   [  --without-dynamic-modules        link modules statically],[],[with_dynamic_modules=yes])
-AC_ARG_WITH(gdbm,    [  --without-gdbm         no GNU database manager support ])
-AC_ARG_WITH(gmp,     [  --without-gmp          no Support bignums])
-AC_ARG_WITH(readline,[  --without-readline     no support for command line editing])
-AC_ARG_WITH(debug,   [  --without-debug        disable run time self tests],[],[with_debug=yes])
-AC_ARG_WITH(threads, [  --without-threads      no threads support],[],[with_threads=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(mysql,   [  --without-mysql        no support for the Mysql database],[],[with_mysql=yes])
+AC_ARG_WITH(gdbm,      [  --without-gdbm         no GNU database manager support ])
+AC_ARG_WITH(gmp,       [  --without-gmp          no Support bignums])
+AC_ARG_WITH(readline,  [  --without-readline     no support for command line editing])
+AC_ARG_WITH(debug,     [  --without-debug        disable run time self tests],[],[with_debug=yes])
+AC_ARG_WITH(threads,   [  --without-threads      no threads support],[],[with_threads=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(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
   AC_DEFINE(DEBUG)
@@ -1600,6 +1601,11 @@ then
            LDSHARED="ld -G -bexpall"
          else
            # 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"
          fi
 	;;
-- 
GitLab