View | Details | Raw Unified | Return to bug 91040
Collapse All | Expand All

(-)www/nvu/files/patch-venkman (+30 lines)
Line 0 Link Here
1
--- configure.orig	Thu Dec 29 00:16:56 2005
2
+++ configure	Thu Dec 29 00:17:37 2005
3
@@ -12674,10 +12674,8 @@
4
     MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gnomevfs||'`
5
 fi
6
 
7
-if test -z "$MOZ_JSDEBUGGER" && test `echo "$MOZ_EXTENSIONS" | grep -c venkman` -ne 0; then
8
-    echo "configure: warning: Cannot build venkman without JavaScript debug library. Removing venkman from MOZ_EXTENSIONS." 1>&2
9
-    MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|venkman||'`
10
-fi
11
+echo "configure: warning: Removing venkman from MOZ_EXTENSIONS." 1>&2
12
+MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|venkman||'`
13
 
14
 if test `echo "$MOZ_EXTENSIONS" | grep -c tridentprofile` -ne 0 && test "$OS_ARCH" != "WINNT"; then
15
     echo "configure: warning: tridentprofile extension works only on Windows at this time. Removing tridentprofile from MOZ_EXTENSIONS." 1>&2
16
--- configure.in.orig	Thu Dec 29 00:17:05 2005
17
+++ configure.in	Thu Dec 29 00:18:39 2005
18
@@ -3841,10 +3841,8 @@
19
     MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|gnomevfs||'`
20
 fi
21
 
22
-if test -z "$MOZ_JSDEBUGGER" && test `echo "$MOZ_EXTENSIONS" | grep -c venkman` -ne 0; then
23
-    AC_MSG_WARN([Cannot build venkman without JavaScript debug library. Removing venkman from MOZ_EXTENSIONS.])
24
-    MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|venkman||'`
25
-fi
26
+AC_MSG_WARN([Removing venkman from MOZ_EXTENSIONS.])
27
+MOZ_EXTENSIONS=`echo $MOZ_EXTENSIONS | sed -e 's|venkman||'`
28
 
29
 dnl This might be temporary: build tridentprofile only on Windows
30
 if test `echo "$MOZ_EXTENSIONS" | grep -c tridentprofile` -ne 0 && test "$OS_ARCH" != "WINNT"; then

Return to bug 91040