Skip to content
Snippets Groups Projects
Commit 423839db authored by Francesco Chemolli's avatar Francesco Chemolli Committed by Henrik (Grubba) Grubbström
Browse files

Added checking for shl_*. Thanks to Francesco Chemolli.

Rev: src/configure.in:1.213
parent 79f71cec
No related branches found
No related tags found
No related merge requests found
AC_REVISION("$Id: configure.in,v 1.212 1998/07/06 21:57:27 grubba Exp $") AC_REVISION("$Id: configure.in,v 1.213 1998/07/09 12:46:34 grubba Exp $")
AC_INIT(interpret.c) AC_INIT(interpret.c)
AC_CONFIG_HEADER(machine.h) AC_CONFIG_HEADER(machine.h)
...@@ -669,9 +669,9 @@ AC_HEADER_STDC ...@@ -669,9 +669,9 @@ AC_HEADER_STDC
AC_CHECK_HEADERS(sys/rusage.h time.h sys/time.h sys/types.h unistd.h stdlib.h \ AC_CHECK_HEADERS(sys/rusage.h time.h sys/time.h sys/types.h unistd.h stdlib.h \
memory.h values.h string.h strings.h fcntl.h sys/filio.h sys/sockio.h crypt.h \ memory.h values.h string.h strings.h fcntl.h sys/filio.h sys/sockio.h crypt.h \
locale.h sys/resource.h sys/select.h sys/mman.h setjmp.h limits.h pthread.h \ locale.h sys/resource.h sys/select.h sys/mman.h setjmp.h limits.h pthread.h \
thread.h dlfcn.h dld.h sys/times.h sched.h sys/procfs.h sys/param.h winsock.h \ thread.h dlfcn.h dld.h dl.h sys/times.h sched.h sys/procfs.h sys/param.h \
sys/ioct.h sys/socket.h malloc.h netinet/in.h sys/wait.h winbase.h grp.h \ winsock.h sys/ioct.h sys/socket.h malloc.h netinet/in.h sys/wait.h winbase.h \
pwd.h passwd.h group.h winsock2.h signal.h sys/file.h poll.h sys/poll.h \ grp.h pwd.h passwd.h group.h winsock2.h signal.h sys/file.h poll.h sys/poll.h \
socket.h ieeefp.h fp_class.h) socket.h ieeefp.h fp_class.h)
AC_CHECK_SIZEOF(char *,4) AC_CHECK_SIZEOF(char *,4)
...@@ -700,6 +700,7 @@ fi ...@@ -700,6 +700,7 @@ fi
AC_CHECK_LIB(nsl, gethostbyname) AC_CHECK_LIB(nsl, gethostbyname)
AC_CHECK_LIB(dl, dlopen) AC_CHECK_LIB(dl, dlopen)
AC_CHECK_LIB(dld, shl_load)
AC_CHECK_LIB(dld, dld_link) AC_CHECK_LIB(dld, dld_link)
...@@ -1035,6 +1036,7 @@ AC_CHECK_FUNCS( \ ...@@ -1035,6 +1036,7 @@ AC_CHECK_FUNCS( \
wait4 \ wait4 \
waitpid \ waitpid \
munmap \ munmap \
shl_load \
dld_link \ dld_link \
dld_get_func \ dld_get_func \
pipe \ pipe \
...@@ -2447,7 +2449,8 @@ AC_SUBST(RANLIB) ...@@ -2447,7 +2449,8 @@ AC_SUBST(RANLIB)
AC_SUBST(DEBUGDEF) AC_SUBST(DEBUGDEF)
AC_SUBST(ac_configure_args) AC_SUBST(ac_configure_args)
if test x$ac_cv_func_dlopen$ac_cv_func_dld_link = xnono ; then if test x$ac_cv_func_dlopen$ac_cv_func_dld_link$ac_cv_func_shl_load = xnonono;
then
if test x$pike_cv_sys_os != xWindows_NT ; then if test x$pike_cv_sys_os != xWindows_NT ; then
with_dynamic_modules=no with_dynamic_modules=no
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment