diff options
author | Marius Vollmer <mvo@zagadka.de> | 1996-12-08 17:10:34 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 1996-12-08 17:10:34 +0000 |
commit | f0cea46d8b604f8233e8fc07d0fee4d693b758f9 (patch) | |
tree | 8200a97f47b15b588b076c16575092923409cc69 | |
parent | abb2a7d0071bce7f47798c167d79dea4df331a09 (diff) | |
download | guile-f0cea46d8b604f8233e8fc07d0fee4d693b758f9.tar.gz |
* acconfig.h: Added DYNAMIC_LINKING symbol.
-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 |