summaryrefslogtreecommitdiff
path: root/sysutils/lttng-tools/files/patch-tests_regression_ust_ust-dl_prog.c
blob: c880048d6be8e534655c66fc3ae6ea0ed6c72a7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- tests/regression/ust/ust-dl/prog.c.orig	2017-01-12 17:19:54 UTC
+++ tests/regression/ust/ust-dl/prog.c
@@ -21,7 +21,11 @@ int main(int argc, char **argv)
 	if (!h0) {
 		goto get_error;
 	}
+#if defined(__FreeBSD__)
+	h1 = dlopen("libfoo.so", RTLD_LAZY);
+#else
 	h1 = dlmopen(LM_ID_BASE, "libfoo.so", RTLD_LAZY);
+#endif
 	if (!h1) {
 		goto get_error;
 	}