diff options
Diffstat (limited to 'emulators/bochs/Makefile')
-rw-r--r-- | emulators/bochs/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/emulators/bochs/Makefile b/emulators/bochs/Makefile index 10251c669c75..2e879f4be0ac 100644 --- a/emulators/bochs/Makefile +++ b/emulators/bochs/Makefile @@ -29,7 +29,7 @@ RUN_DEPENDS+= mkfontdir:${PORTSDIR}/x11/XFree86-4-clients USE_XLIB= yes USE_GMAKE= yes -GNU_CONFIGURE= yes +USE_AUTOCONF= yes CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --enable-cdrom \ --disable-split-hd @@ -63,6 +63,10 @@ CONFIGURE_ARGS+= --enable-debugger --enable-disasm CONFIGURE_ARGS+= --enable-x86-debugger .endif +.if defined(WITH_NE2000) +CONFIGURE_ARGS+= --enable-ne2000 +.endif + .if defined(WITH_SOUND) CONFIGURE_ARGS+= --enable-sb16=linux .endif @@ -109,6 +113,11 @@ pre-everything:: @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_X86_DEBUGGER=yes\"" @${ECHO_MSG} .endif +.if !defined(WITH_NE2000) + @${ECHO_MSG} "If you want to compile with networking (ne2000) support." + @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_NE2000=yes\"" + @${ECHO_MSG} +.endif .if !defined(WITH_SOUND) @${ECHO_MSG} "If you want to compile with sound (blaster 16) support." @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_SOUND=yes\"" |