Update of /cvsroot/scsh/scsh-0.6/c/unix
In directory usw-pr-cvs1:/tmp/cvs-serv6061
Modified Files:
dynamo.c
Log Message:
Fixed include directive for dlfcn.h: include <dlfcn.h> if HAVE_DLOPEN,
../fake/dlfcn.h otherwise.
Index: dynamo.c
===================================================================
RCS file: /cvsroot/scsh/scsh-0.6/c/unix/dynamo.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** dynamo.c 2000/12/20 08:31:01 1.2
--- dynamo.c 2001/01/22 12:48:00 1.3
***************
*** 8,13 ****
#include "sysdep.h"
#include "scheme48.h"
- #include "../fake/dlfcn.h"
#if defined(RTLD_NOW)
--- 8,17 ----
#include "sysdep.h"
#include "scheme48.h"
+ #if defined(HAVE_DLOPEN)
+ #include <dlfcn.h>
+ #else
+ #include "../fake/dlfcn.h"
+ #endif
#if defined(RTLD_NOW)
|