View | Details | Raw Unified | Return to bug 269185
Collapse All | Expand All

(-)b/lib/liblzma/config.h (+4 lines)
Lines 24-31 Link Here
24
/* Define to 1 if you have the <byteswap.h> header file. */
24
/* Define to 1 if you have the <byteswap.h> header file. */
25
/* #undef HAVE_BYTESWAP_H */
25
/* #undef HAVE_BYTESWAP_H */
26
26
27
#ifndef WITHOUT_CAPSICUM
27
/* Define to 1 if Capsicum is available. */
28
/* Define to 1 if Capsicum is available. */
28
#define HAVE_CAPSICUM 1
29
#define HAVE_CAPSICUM 1
30
#endif
29
31
30
/* Define to 1 if the system has the type `CC_SHA256_CTX'. */
32
/* Define to 1 if the system has the type `CC_SHA256_CTX'. */
31
/* #undef HAVE_CC_SHA256_CTX */
33
/* #undef HAVE_CC_SHA256_CTX */
Lines 283-290 Link Here
283
/* Define to 1 if you have the <sys/byteorder.h> header file. */
285
/* Define to 1 if you have the <sys/byteorder.h> header file. */
284
/* #undef HAVE_SYS_BYTEORDER_H */
286
/* #undef HAVE_SYS_BYTEORDER_H */
285
287
288
#ifndef WITHOUT_CAPSICUM
286
/* Define to 1 if you have the <sys/capsicum.h> header file. */
289
/* Define to 1 if you have the <sys/capsicum.h> header file. */
287
#define HAVE_SYS_CAPSICUM_H 1
290
#define HAVE_SYS_CAPSICUM_H 1
291
#endif
288
292
289
/* Define to 1 if you have the <sys/endian.h> header file. */
293
/* Define to 1 if you have the <sys/endian.h> header file. */
290
/* #undef HAVE_SYS_ENDIAN_H */
294
/* #undef HAVE_SYS_ENDIAN_H */
(-)b/usr.bin/xz/Makefile (-2 / +5 lines)
Lines 1-4 Link Here
1
# $FreeBSD$
1
.include <src.opts.mk>
2
2
3
PROG=	xz
3
PROG=	xz
4
4
Lines 43-48 CFLAGS+= -DHAVE_CONFIG_H \ Link Here
43
		-I${LZMALIBDIR} \
43
		-I${LZMALIBDIR} \
44
		-I${XZDIR}/common
44
		-I${XZDIR}/common
45
45
46
.if ${MK_CAPSICUM} == "no"
47
CFLAGS+=	-DWITHOUT_CAPSICUM
48
.endif
49
46
LIBADD=	lzma
50
LIBADD=	lzma
47
51
48
.include <bsd.prog.mk>
52
.include <bsd.prog.mk>
49
- 

Return to bug 269185