blob: fe7aac93188764e290b6ed9dfca568634cc1d8ee [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From cdf7f2e394fcfb93a61f509ae3388f29540a6b35 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 8 Sep 2018 11:56:13 -0700
4Subject: [PATCH] include dlfcn.h for RTLD_DEFAULT
5
6Fixes
7plthook.c:128:41: error: use of undeclared identifier 'RTLD_DEFAULT'
8
9Upstream-Status: Submitted [https://github.com/namhyung/uftrace/pull/487]
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12 libmcount/plthook.c | 1 +
13 utils/debug.c | 1 +
14 2 files changed, 2 insertions(+)
15
16diff --git a/libmcount/plthook.c b/libmcount/plthook.c
17index d9d84f0..d54f5e8 100644
18--- a/libmcount/plthook.c
19+++ b/libmcount/plthook.c
20@@ -6,6 +6,7 @@
21 #include <sys/mman.h>
22 #include <pthread.h>
23 #include <assert.h>
24+#include <dlfcn.h>
25
26 /* This should be defined before #include "utils.h" */
27 #define PR_FMT "mcount"
28diff --git a/utils/debug.c b/utils/debug.c
29index 2134b09..5460def 100644
30--- a/utils/debug.c
31+++ b/utils/debug.c
32@@ -13,6 +13,7 @@
33 #include <assert.h>
34 #include <limits.h>
35 #include <inttypes.h>
36+#include <dlfcn.h>
37
38 #include "utils/utils.h"
39