Blame view

buildroot/buildroot-2016.08.1/package/procps-ng/0003-ps-output.c-include-dlfcn.h-only-when-necessary.patch 854 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  From 4fc9a348026a945aec8eddffc7613de9cb10b10c Mon Sep 17 00:00:00 2001
  From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
  Date: Sun, 7 Aug 2016 11:08:26 +0200
  Subject: [PATCH] ps/output.c: include <dlfcn.h> only when necessary
  
  dlopen() functionality is only used when SELinux support is enabled, so
  <dlfcn.h> only needs to be included when ENABLE_LIBSELINUX is
  defined. This fixes the build in configurations where <dlfcn.h> is not
  available.
  
  Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
  ---
   ps/output.c | 2 ++
   1 file changed, 2 insertions(+)
  
  diff --git a/ps/output.c b/ps/output.c
  index 42c04cf..f540832 100644
  --- a/ps/output.c
  +++ b/ps/output.c
  @@ -46,7 +46,9 @@
    */
   
   #include <ctype.h>
  +#if ENABLE_LIBSELINUX
   #include <dlfcn.h>
  +#endif
   #include <fcntl.h>
   #include <grp.h>
   #include <limits.h>
  -- 
  2.7.4