mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-10-14 02:17:36 +08:00
ne2000: Decouple emulator from pcap
Currently the ne2000 emulator explicitly depends on pcap. Decouple the ne2000 code and pcap code so we can always build with the emulator but optionally disable pcap. This also updates build defines and configuration to make this decoupling explicit to the user.
This commit is contained in:
@@ -92,8 +92,8 @@
|
||||
/* Define to 1 to enable MT32 emulation (x86/x86_64 only) */
|
||||
/* #undef C_MT32 */
|
||||
|
||||
/* Define to 1 to enable NE2000 ethernet passthrough, requires libpcap */
|
||||
/* #undef C_NE2000 */
|
||||
/* Define to 1 to enable ethernet passthrough, requires libpcap */
|
||||
/* #undef C_PCAP */
|
||||
|
||||
/* Define to 1 to use opengl display output support */
|
||||
//#define C_OPENGL 1
|
||||
|
@@ -114,8 +114,8 @@
|
||||
/* Define to 1 to enable MT32 emulation (x86/x86_64 only) */
|
||||
/* #undef C_MT32 */
|
||||
|
||||
/* Define to 1 to enable NE2000 ethernet passthrough, requires libpcap */
|
||||
#define C_NE2000 1
|
||||
/* Define to 1 to enable ethernet passthrough, requires libpcap */
|
||||
#define C_PCAP 1
|
||||
|
||||
/* Define to 1 to use opengl display output support */
|
||||
/*#define C_OPENGL 1*/
|
||||
|
Reference in New Issue
Block a user