diff options
author | Jeremy Allison <jra@samba.org> | 2002-03-27 03:00:39 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-03-27 03:00:39 +0000 |
commit | 7d7c594644d9b374e522f208b1f0bd5ab8abb9ab (patch) | |
tree | c197c1ed507014055f027cf0ace873e11ac3caca /source3/include/config.h.in | |
parent | 1a06eeb6dae9b148a6e70470660e51a42def2399 (diff) | |
download | samba-7d7c594644d9b374e522f208b1f0bd5ab8abb9ab.tar.gz samba-7d7c594644d9b374e522f208b1f0bd5ab8abb9ab.tar.bz2 samba-7d7c594644d9b374e522f208b1f0bd5ab8abb9ab.zip |
Removed HAVE_LIBDL from most places (except system.c). Added checks for
dlopen & friends into configure.in. This should help building on *BSD
where dl*** calls are in libc.
Jeremy
(This used to be commit ac1baba35d7a399bf800ced49a4384e39955e3eb)
Diffstat (limited to 'source3/include/config.h.in')
-rw-r--r-- | source3/include/config.h.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/include/config.h.in b/source3/include/config.h.in index cebd9ee346..0500e05b7e 100644 --- a/source3/include/config.h.in +++ b/source3/include/config.h.in @@ -505,6 +505,18 @@ /* Define if you have the crypt16 function. */ #undef HAVE_CRYPT16 +/* Define if you have the dlclose function. */ +#undef HAVE_DLCLOSE + +/* Define if you have the dlerror function. */ +#undef HAVE_DLERROR + +/* Define if you have the dlopen function. */ +#undef HAVE_DLOPEN + +/* Define if you have the dlsym function. */ +#undef HAVE_DLSYM + /* Define if you have the dup2 function. */ #undef HAVE_DUP2 |