summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2011-09-21 17:54:23 +0300
committerTor Lillqvist <tlillqvist@suse.com>2011-09-21 17:55:27 +0300
commit1b2965833c97da449f5d38c9e683c14507a97462 (patch)
tree0cccc97c21e91650be2e0a3aecc4d92ba3f86387
parent0538506fb42e42b7e696dc7875c69cb8ebc65c50 (diff)
Disable also the nss module when using --enable-dbgutil in a Windows build
-rwxr-xr-xconfigure.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index a78b06ac7951..0be1d0e00488 100755
--- a/configure.in
+++ b/configure.in
@@ -2293,11 +2293,15 @@ if test -n "$enable_dbgutil" && test "$enable_dbgutil" != "no"; then
PROEXT=""
PRODUCT=""
AC_MSG_RESULT([yes])
- if test $_os = WINNT -a \( "$enable_mozilla" = yes -o "$enable_build_mozilla" = yes \); then
+ if test $_os = WINNT -a \
+ \( "$enable_mozilla" = yes -o \
+ "$enable_nss_module" = yes -o \
+ "$enable_build_mozilla" = yes \); then
# We can't build against the Mozilla stuff if using _DEBUG, will get linking errors
# See connectivity/drivers/mozab
- AC_MSG_WARN([Also disabling Mozilla then])
+ AC_MSG_WARN([Also disabling Mozilla stuff then])
enable_mozilla=no
+ enable_nss_module=no
enable_build_mozilla=no
fi
else