Skip to content
Snippets Groups Projects
Commit b954dd54 authored by Björn Esser's avatar Björn Esser Committed by Brad King
Browse files

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


`LIBC_SO` is a more long-term choice, suitable for new targets that may
no longer define `LIBDL_SO`.

Signed-off-by: default avatarBjörn Esser <besser82@fedoraproject.org>
parent 34881b34
No related branches found
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.
Finish editing this message first!
Please register or to comment