Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Mar 2006 22:39:21 GMT
From:      Matthieu Michaud <ohmer@epita.info>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/95057: bochs doesn't offer the --port-e9-hack option
Message-ID:  <200603282239.k2SMdLd9008807@www.freebsd.org>
Resent-Message-ID: <200603282240.k2SMeMTi023772@freefall.freebsd.org>

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

>Number:         95057
>Category:       ports
>Synopsis:       bochs doesn't offer the --port-e9-hack option
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Mar 28 22:40:22 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Matthieu Michaud
>Release:        6.0-RELEASE
>Organization:
EPITA
>Environment:
FreeBSD goudale.srs.lab.epita.fr 6.0-RELEASE-p4 FreeBSD 6.0-RELEASE-p4 #0: Tue Feb  7 15:41:21 CET 2006     root@delerium.srs.lab.epita.fr:/usr/obj/usr/src/sys/LABSRS_HP  i386

>Description:
bochs doesn't offer the --port-e9-hack option. it's useful when developping a kernel without a scrollable console yet :)
>How-To-Repeat:
open ports/emulators/bochs/Makefile and look at CONFIGURE_ARGS, it's missing.
>Fix:
$ diff -u ports/emulators/bochs/Makefile.orig ports/emulators/bochs/Makefile
--- ports/emulators/bochs/Makefile.orig Wed Mar 29 00:18:58 2006
+++ ports/emulators/bochs/Makefile      Wed Mar 29 00:23:03 2006
@@ -73,6 +73,10 @@
 CONFIGURE_ARGS+=       --enable-x86-debugger
 .endif

+.if defined(WITH_BOCHS_PORT_E9_HACK)
+CONFIGURE_ARGS+=       --enable-port-e9-hack
+.endif
+
 MSG_FILE=      ${PKGDIR}/pkg-message
 PKGMESSAGE=    ${WRKDIR}/pkg-message

@@ -112,6 +116,11 @@
 .if !defined(WITH_BOCHS_AMD64)
        @${ECHO_MSG} "If you want to compile with AMD x86-64 support,"
        @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_AMD64=yes\""
+       @${ECHO_MSG}
+.endif
+.if !defined(WITH_BOCHS_PORT_E9_HACK)
+       @${ECHO_MSG} "If you want to compile with port e9 hack support,"
+       @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_PORT_E9_HACK=yes\""
        @${ECHO_MSG}
 .endif

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



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