summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--configure.ac8
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