diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-04-24 11:43:02 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-04-24 11:43:02 +0000 |
commit | 38fd99e84176106ed700f637e9292d2a4c1385b4 (patch) | |
tree | aacde116f5159a5b515942b8c4cdc18b041452a1 /source/include/includes.h | |
parent | c4d6a49779e0e2bff86256b8b353e6c803e31ba9 (diff) | |
download | samba-38fd99e84176106ed700f637e9292d2a4c1385b4.tar.gz samba-38fd99e84176106ed700f637e9292d2a4c1385b4.tar.xz samba-38fd99e84176106ed700f637e9292d2a4c1385b4.zip |
patch from Alexander Bokovoy needed for dlopen on bsd systems
Diffstat (limited to 'source/include/includes.h')
-rw-r--r-- | source/include/includes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/include/includes.h b/source/include/includes.h index becf7e5e393..3d71f43303c 100644 --- a/source/include/includes.h +++ b/source/include/includes.h @@ -1002,9 +1002,9 @@ int vasprintf(char **ptr, const char *format, va_list ap); #define DEFAULT_SOCKET_OPTIONS "" #endif -/* Load header file for libdl stuff */ +/* Load header file for dynamic linking stuff */ -#ifdef HAVE_LIBDL +#ifdef HAVE_DLFCN_H #include <dlfcn.h> #endif |