1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

Make dynamic linking work on Dec Unix. (Thanks to Clark McGrew)

* dynl.c: Include "dynl-dl.c" also when HAVE_DLOPEN is defined.
This commit is contained in:
Marius Vollmer 1997-10-02 14:40:30 +00:00
parent 21fdbaeee4
commit 5ddca2ef51

View file

@ -231,7 +231,7 @@ static void *sysdep_dynl_link SCM_P ((char *filename, char *subr));
static void sysdep_dynl_unlink SCM_P ((void *handle, char *subr));
static void *sysdep_dynl_func SCM_P ((char *symbol, void *handle, char *subr));
#ifdef HAVE_LIBDL
#if defined (HAVE_LIBDL) || defined (HAVE_DLOPEN)
#include "dynl-dl.c"
#else
#ifdef HAVE_SHL_LOAD