From 316345253ed2ac49754e47d7cc7a4678c6e1e33a Mon Sep 17 00:00:00 2001 From: Daniel Hartwig Date: Sat, 30 Jun 2012 19:06:58 +0800 Subject: Disable use of libept by default; enable with --enable-ept Closes: #504153 Closes: #501732 --- NEWS | 6 ++++-- configure.ac | 8 ++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/NEWS b/NEWS index 653557a1..ade18618 100644 --- a/NEWS +++ b/NEWS @@ -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 -- cgit v1.2.3