[Mono-bugs] [Bug 74615][Nor] New - Preview 2.0 cannot be disabled in svn configure

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Fri, 15 Apr 2005 04:51:57 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by flashdict@gmail.com.

http://bugzilla.ximian.com/show_bug.cgi?id=74615

--- shadow/74615	2005-04-15 04:51:57.000000000 -0400
+++ shadow/74615.tmp.12863	2005-04-15 04:51:57.000000000 -0400
@@ -0,0 +1,39 @@
+Bug#: 74615
+Product: Mono Tasks
+Version: 0%
+OS: All
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: Build
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: flashdict@gmail.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Preview 2.0 cannot be disabled in svn configure
+
+Since the new version of mono will have $PREVIEW enabled by default, the
+logic of the configure test for --with-preview needs to be changed so that
+it can be turned off, presumably.  This was mentioned in the mono-devel
+list - this is just to track it.
+
+
+Index: configure.in
+===================================================================
+--- configure.in        (revision 43022)
++++ configure.in        (working copy)
+@@ -1616,8 +1616,8 @@
+
+ PREVIEW=yes
+ AC_ARG_WITH(preview, [ --with-preview=yes,no     If you want to install
+the 2.0 FX preview],[
+-       if test x$with_preview = xyes; then
+-             PREVIEW=yes
++       if test x$with_preview = xno; then
++             PREVIEW=no
+        fi
+ ])