Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 363149 | Differences between
and this patch

Collapse All | Expand All

(-)a/configure.ac (-6 / +2 lines)
Lines 61-79 AM_CONDITIONAL([HAVE_VND], [test "x$ac_cv_header_dev_vndvar_h" = "xyes"]) Link Here
61
PKG_CHECK_MODULES([libHX], [libHX >= 3.6])
61
PKG_CHECK_MODULES([libHX], [libHX >= 3.6])
62
PKG_CHECK_MODULES([libxml], [libxml-2.0 >= 2.6])
62
PKG_CHECK_MODULES([libxml], [libxml-2.0 >= 2.6])
63
63
64
with_crypto="yes";
65
AC_ARG_WITH(
64
AC_ARG_WITH(
66
	[crypto],
65
	[crypto],
67
	AS_HELP_STRING([--without-crypto], [Disable use of OpenSSL cryptography]),
66
	AS_HELP_STRING([--without-crypto], [Disable use of OpenSSL cryptography]),
68
	[],
67
	[with_crypto="$withval"]
69
	[with_crypto="no"]
70
)
68
)
71
69
72
with_cryptsetup="yes";
73
AC_ARG_WITH([cryptsetup],
70
AC_ARG_WITH([cryptsetup],
74
	AS_HELP_STRING([--without-cryptsetup], [Disable use of libcryptsetup]),
71
	AS_HELP_STRING([--without-cryptsetup], [Disable use of libcryptsetup]),
75
	[],
72
	[with_crypto="$withval"]
76
	[with_cryptsetup="no"]
77
)
73
)
78
74
79
if test "x$with_crypto" = "xyes"; then
75
if test "x$with_crypto" = "xyes"; then
(-)a/doc/changelog.txt (-1 / +2 lines)
Lines 3-8 For details, see the history as recorded in the git repository. Link Here
3
3
4
HEAD
4
HEAD
5
====
5
====
6
Fixes:
7
- build: fix configure --without-crypt{o,setup}
6
8
7
9
8
v2.8 (2010-12-22)
10
v2.8 (2010-12-22)
9
- 

Return to bug 363149