diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2003-07-15 19:22:40 +0000 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2003-07-15 19:22:40 +0000 |
commit | d0e21923ea22a5e9983b98a4cc08ae4d6b615af8 (patch) | |
tree | 246e042f98328f113ba900e6038f686ee8a7f456 | |
parent | Fix compilation on -current. (diff) |
Add in PCI bridge support. It's a run-time option, too, and is required for
some guest OSes.
PR: ports/52631
Submitted by: Bruce M Simpson <bms@spc.org>
Notes
Notes:
svn path=/head/; revision=84936
-rw-r--r-- | emulators/bochs/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/emulators/bochs/Makefile b/emulators/bochs/Makefile index 32b4c895529d..10d8ed6b7114 100644 --- a/emulators/bochs/Makefile +++ b/emulators/bochs/Makefile @@ -8,7 +8,7 @@ PORTNAME= bochs PORTVERSION= 2.0.2 -PORTEPOCH= 1 +PORTEPOCH= 2 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -28,7 +28,8 @@ GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --disable-split-hd \ --enable-all-optimizations \ - --with-x11 + --with-x11 \ + --enable-pci CFLAGS+= -fno-rtti -fno-exceptions -fomit-frame-pointer |