Regenerated after adding builtin "slirp" support
This commit is contained in:
parent
dfc71f8ae4
commit
c54dadc891
23
bochs/configure
vendored
23
bochs/configure
vendored
@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
# From configure.in Id: configure.in 12188 2014-02-15 12:18:15Z vruppert .
|
||||
# From configure.in Id: configure.in 12192 2014-02-16 13:31:53Z vruppert .
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.69.
|
||||
#
|
||||
@ -22320,6 +22320,27 @@ NETLOW_OBJS=''
|
||||
if test "$networking" = yes; then
|
||||
NETLOW_OBJS='eth_null.o eth_vnet.o'
|
||||
ethernet_modules='null vnet'
|
||||
can_compile_slirp_new=0
|
||||
case "$target" in
|
||||
*-cygwin* | *-mingw32*)
|
||||
can_compile_slirp_new=1
|
||||
DEVICE_LINK_OPTS="$DEVICE_LINK_OPTS -liphlpapi"
|
||||
;;
|
||||
*)
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "netinet/in.h" "ac_cv_header_netinet_in_h" "$ac_includes_default"
|
||||
if test "x$ac_cv_header_netinet_in_h" = xyes; then :
|
||||
can_compile_slirp_new=1
|
||||
fi
|
||||
|
||||
|
||||
;;
|
||||
esac
|
||||
if test $can_compile_slirp_new = 1; then
|
||||
NETLOW_OBJS="$NETLOW_OBJS eth_slirp_new.o \$(SLIRP_OBJS)"
|
||||
ethernet_modules="$ethernet_modules slirp_new"
|
||||
$as_echo "#define BX_NETMOD_SLIRP_NEW 1" >>confdefs.h
|
||||
|
||||
fi
|
||||
if test "$MSVC_TARGET" != 1; then
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "net/bpf.h" "ac_cv_header_net_bpf_h" "$ac_includes_default"
|
||||
if test "x$ac_cv_header_net_bpf_h" = xyes; then :
|
||||
|
Loading…
Reference in New Issue
Block a user