Skip to content
Snippets Groups Projects
Commit 0648cb1a authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'DynamicLoader-glibc-libdl'


b954dd54 testDynamicLoader: Use LIBC_SO if LIBDL_SO is not defined by glibc anymore.

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !223
parents 36ee2e3e b954dd54
Branches
No related tags found
No related merge requests found
......@@ -16,6 +16,10 @@
// Will define LIBDL_SO macro on systems with glibc.
#ifdef __GLIBC__
# include <gnu/lib-names.h>
// Define to LIBC_SO, if not defined by above header.
# ifndef LIBDL_SO
# define LIBDL_SO LIBC_SO
# endif
#endif
// Define the LIBDL_SO macro, if not defined above.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment