Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Jul 2004 11:47:35 +0800
From:      Dryice Liu <dryice@hotpop.com>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        Dryice Liu <dryice@liu.com.cn>
Subject:   ports/69736: [update]emulators/bochs: fix typo and add a knob
Message-ID:  <20040729023503.297EF1A01E5@smtp-1.hotpop.com>
Resent-Message-ID: <200407290350.i6T3o0Bn057172@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         69736
>Category:       ports
>Synopsis:       [update]emulators/bochs: fix typo and add a knob
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jul 29 03:50:00 GMT 2004
>Closed-Date:
>Last-Modified:
>Originator:     Dryice Liu
>Release:        FreeBSD 5.2.1-RELEASE i386
>Organization:
>Environment:
System: FreeBSD dryice.3322.org 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #1: Mon Mar 1 16:17:42 CST 2004


>Description:
	Changes:
		- Fix mismatch of WITH_BOCHS_TERM and WITH_BOCHS_GUI_TERM
		- Add a new knob WITH_BOCHS_GUI_NOGUI
>How-To-Repeat:
	N/A
>Fix:


--- bochs.diff begins here ---
diff -ruN bochs.old/Makefile bochs/Makefile
--- bochs.old/Makefile	Sat Jul 24 04:30:06 2004
+++ bochs/Makefile	Thu Jul 29 11:39:44 2004
@@ -57,10 +57,14 @@
 .endif
 .endif
 
-.if defined(WITH_BOCHS_TERM)
+.if defined(WITH_BOCHS_GUI_TERM)
 CONFIGURE_ARGS+=	--with-term
 .endif
 
+.if defined(WITH_BOCHS_GUI_NOGUI)
+CONFIGURE_ARGS+=	--with-nogui
+.endif
+
 .if defined(WITH_BOCHS_AMD64)
 CONFIGURE_ARGS+=	--enable-x86-64
 .endif
@@ -84,9 +88,14 @@
 	@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_CPU_LEVEL=<cpu level>\""
 	@${ECHO_MSG}
 .endif
-.if !defined(WITH_BOCHS_TERM)
+.if !defined(WITH_BOCHS_GUI_TERM)
 	@${ECHO_MSG} "If you want to enable the plain text, console-based bochs interface"
 	@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_GUI_TERM=yes\""
+	@${ECHO_MSG}
+.endif
+.if !defined(WITH_BOCHS_GUI_NOGUI)
+	@${ECHO_MSG} "If you want the bochs display"
+	@${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_GUI_NOGUI=yes\""
 	@${ECHO_MSG}
 .endif
 .if !defined(WITH_BOCHS_PROCESSORS)
--- bochs.diff ends here ---



>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040729023503.297EF1A01E5>