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

Reenabled dynamic modules for AIX/cc on AIX >= 4.3.

Rev: src/configure.in:1.430
parent f0ebd374
No related branches found
No related tags found
No related merge requests found
AC_REVISION("$Id: configure.in,v 1.429 2000/10/13 19:40:08 hubbe Exp $") AC_REVISION("$Id: configure.in,v 1.430 2000/10/24 13:25:54 grubba Exp $")
AC_INIT(interpret.c) AC_INIT(interpret.c)
AC_CONFIG_HEADER(machine.h) AC_CONFIG_HEADER(machine.h)
...@@ -3865,13 +3865,22 @@ if test -z "$LDSHARED" ; then ...@@ -3865,13 +3865,22 @@ if test -z "$LDSHARED" ; then
fi fi
fi fi
else else
# Dynamic linking turned off for AIX-cc if test "`uname -r`" -ge 3 -a "`uname -v`" -ge 4 ; then
# LDSHARED="ld -G -bexpall"
# In addition, the dynamic loading test seems to else if test "`uname -v`" -gt 4 ; then
# cause our RS/6000 to hang, which causes the # Extra forward compatibility...
# watchdog-timer to PANIC. # AIX 5+
pike_cv_sys_dynamic_loading=no LDSHARED="ld -G -bexpall"
LDSHARED="ld" else
# AIX 4.1 and earlier don't have/have unreliable
# handling of dlopen et al.
#
# Even AIX 4.2.1 has buggy dlopen -- NEVER attempt
# to dlopen a file that hasn't been linked with -G.
pike_cv_sys_dynamic_loading=no
LDSHARED="ld"
fi
fi
fi fi
;; ;;
IRIX*) IRIX*)
......
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