diff options
author | Daniel Hartwig <mandyke@gmail.com> | 2012-06-30 19:06:58 +0800 |
---|---|---|
committer | Daniel Hartwig <mandyke@gmail.com> | 2012-06-30 19:06:58 +0800 |
commit | 316345253ed2ac49754e47d7cc7a4678c6e1e33a (patch) | |
tree | 5ebe3384f45da93de13fa3e1b6181aa1f329013d | |
parent | 7bffef4700d3ceb864cc2c05c9ecbc8731388997 (diff) | |
download | aptitude-316345253ed2ac49754e47d7cc7a4678c6e1e33a.tar.gz |
Disable use of libept by default; enable with --enable-ept
Closes: #504153
Closes: #501732
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | configure.ac | 8 |
2 files changed, 8 insertions, 6 deletions
@@ -167,7 +167,7 @@ ii. to make the program more atomic and reliable when used * Read tags from debtags database even when libept is disabled, but fall back to Packages files if the database - is not available. + is not available. (Closes: #501732) - Cosmetic and UI bugs: @@ -180,7 +180,9 @@ ii. to make the program more atomic and reliable when used - Build system changes: - * Using libept is optional; use --disable-ept to disable it. + * Using libept is optional and disabled by default. Use + --enable-ept with configure to turn it on. + (Closes: #504153) - Documentation: diff --git a/configure.ac b/configure.ac index c148cae2..705cf2f5 100644 --- a/configure.ac +++ b/configure.ac @@ -324,12 +324,12 @@ AM_CONDITIONAL([BUILD_LOCAL_GMOCK], [test x$BUILD_LOCAL_GMOCK = x1]) ######################################################################## -WANT_HAVE_EPT=1 +WANT_HAVE_EPT=0 AC_ARG_ENABLE(ept, - AS_HELP_STRING(--disable-ept, [disable use of ept library]), - [if test x$enableval = xno + AS_HELP_STRING(--enable-ept, [enable use of ept library]), + [if test x$enableval = xyes then - WANT_HAVE_EPT=0 + WANT_HAVE_EPT=1 fi]) HAVE_EPT=0 |