From 752fc77cdcd0f74d5a7d7b8061b04b482a83c728 Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Tue, 11 Feb 2020 16:21:39 +0200 Subject: [PATCH] configure: correctly display nss/nspr status If autodiscovery of libnss was used (default), then the line libnss support: yes was never set to no. Same behavior for libnspr. Broken by commit 'configure: fix nspr check logic' (7ea269a212a3a2209effc3cc9300873d6a06859e) --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index d85f55ec29..28dedd06df 100644 --- a/configure.ac +++ b/configure.ac @@ -1878,6 +1878,7 @@ return 0; echo " Fedora: dnf install nspr-devel" echo " CentOS/RHEL: yum install nspr-devel" echo + enable_nspr="no" fi fi @@ -1930,6 +1931,7 @@ return 0; echo " Fedora: dnf install nss-devel" echo " CentOS/RHEL: yum install nss-devel" echo + enable_nss="no" fi fi -- 2.47.2