diff options
-rw-r--r-- | libguile/acconfig.h | 3 | ||||
-rw-r--r-- | libguile/scmconfig.h.in | 12 |
2 files changed, 15 insertions, 0 deletions
diff --git a/libguile/acconfig.h b/libguile/acconfig.h index 83950fc59..ded2b044b 100644 --- a/libguile/acconfig.h +++ b/libguile/acconfig.h @@ -76,3 +76,6 @@ /* Name of this package. */ #undef PACKAGE + +/* Define if you want support for dynamic linking. */ +#undef DYNAMIC_LINKING diff --git a/libguile/scmconfig.h.in b/libguile/scmconfig.h.in index 6440c7b8f..4578d3ace 100644 --- a/libguile/scmconfig.h.in +++ b/libguile/scmconfig.h.in @@ -130,6 +130,9 @@ /* Name of this package. */ #undef PACKAGE +/* Define if you want support for dynamic linking. */ +#undef DYNAMIC_LINKING + /* Define if you have the ctermid function. */ #undef HAVE_CTERMID @@ -187,6 +190,9 @@ /* Define if you have the setsid function. */ #undef HAVE_SETSID +/* Define if you have the shl_load function. */ +#undef HAVE_SHL_LOAD + /* Define if you have the strerror function. */ #undef HAVE_STRERROR @@ -273,3 +279,9 @@ /* Define if you have the <utime.h> header file. */ #undef HAVE_UTIME_H + +/* Define if you have the dl library (-ldl). */ +#undef HAVE_LIBDL + +/* Define if you have the dld library (-ldld). */ +#undef HAVE_LIBDLD |