Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 660608
Collapse All | Expand All

(-)a/libcap/Makefile (-1 / +1 lines)
Lines 22-28 all: $(MINLIBNAME) $(STALIBNAME) libcap.pc Link Here
22
22
23
ifeq ($(BUILD_GPERF),yes)
23
ifeq ($(BUILD_GPERF),yes)
24
USE_GPERF_OUTPUT = $(GPERF_OUTPUT)
24
USE_GPERF_OUTPUT = $(GPERF_OUTPUT)
25
INCLUDE_GPERF_OUTPUT = -include $(GPERF_OUTPUT)
25
INCLUDE_GPERF_OUTPUT = -DINCLUDE_GPERF_OUTPUT='"$(GPERF_OUTPUT)"'
26
endif
26
endif
27
27
28
libcap.pc: libcap.pc.in
28
libcap.pc: libcap.pc.in
(-)a/libcap/cap_text.c (-1 / +5 lines)
Lines 15-20 Link Here
15
#include <ctype.h>
15
#include <ctype.h>
16
#include <limits.h>
16
#include <limits.h>
17
17
18
#ifdef INCLUDE_GPERF_OUTPUT
19
/* we need to include it after #define _GNU_SOURCE is set */
20
#include INCLUDE_GPERF_OUTPUT
21
#endif
22
18
/* Maximum output text length (16 per cap) */
23
/* Maximum output text length (16 per cap) */
19
#define CAP_TEXT_SIZE    (16*__CAP_MAXBITS)
24
#define CAP_TEXT_SIZE    (16*__CAP_MAXBITS)
20
25
21
- 

Return to bug 660608