Removed gui support auto-detection using --with-all-libs option for the MacOS 9
and SVGAlib specific guis. These guis can still be enabled explicitly with --with-macos or --with-svga options.
This commit is contained in:
parent
e1d8bedbb5
commit
0ee643ad76
46
bochs/configure
vendored
46
bochs/configure
vendored
@ -21327,29 +21327,6 @@ fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$with_macos" != yes; then
|
||||
can_compile_macos=1
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "Quickdraw.h" "ac_cv_header_Quickdraw_h" "$ac_includes_default"
|
||||
if test "x$ac_cv_header_Quickdraw_h" = xyes; then :
|
||||
|
||||
else
|
||||
can_compile_macos=0
|
||||
fi
|
||||
|
||||
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "Dialogs.h" "ac_cv_header_Dialogs_h" "$ac_includes_default"
|
||||
if test "x$ac_cv_header_Dialogs_h" = xyes; then :
|
||||
|
||||
else
|
||||
can_compile_macos=0
|
||||
fi
|
||||
|
||||
|
||||
if test $can_compile_macos = 1; then
|
||||
with_macos=yes
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$with_carbon" != yes; then
|
||||
can_compile_carbon=1
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "Carbon.h" "ac_cv_header_Carbon_h" "$ac_includes_default"
|
||||
@ -21440,29 +21417,6 @@ fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$with_svga" != yes; then
|
||||
can_compile_svga=1
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "vga.h" "ac_cv_header_vga_h" "$ac_includes_default"
|
||||
if test "x$ac_cv_header_vga_h" = xyes; then :
|
||||
|
||||
else
|
||||
can_compile_svga=0
|
||||
fi
|
||||
|
||||
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "vgagl.h" "ac_cv_header_vgagl_h" "$ac_includes_default"
|
||||
if test "x$ac_cv_header_vgagl_h" = xyes; then :
|
||||
|
||||
else
|
||||
can_compile_svga=0
|
||||
fi
|
||||
|
||||
|
||||
if test $can_compile_svga = 1; then
|
||||
with_svga=yes
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$with_x11" != yes; then
|
||||
can_compile_x11=1
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "X11/Xlib.h" "ac_cv_header_X11_Xlib_h" "$ac_includes_default"
|
||||
|
@ -303,15 +303,6 @@ if test "$with_all_libs" = yes; then
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$with_macos" != yes; then
|
||||
can_compile_macos=1
|
||||
AC_CHECK_HEADER([Quickdraw.h], [], [ can_compile_macos=0 ])
|
||||
AC_CHECK_HEADER([Dialogs.h], [], [ can_compile_macos=0 ])
|
||||
if test $can_compile_macos = 1; then
|
||||
with_macos=yes
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$with_carbon" != yes; then
|
||||
can_compile_carbon=1
|
||||
AC_CHECK_HEADER([Carbon.h], [], [ can_compile_carbon=0 ])
|
||||
@ -346,15 +337,6 @@ if test "$with_all_libs" = yes; then
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$with_svga" != yes; then
|
||||
can_compile_svga=1
|
||||
AC_CHECK_HEADER([vga.h], [], [ can_compile_svga=0 ])
|
||||
AC_CHECK_HEADER([vgagl.h], [], [ can_compile_svga=0 ])
|
||||
if test $can_compile_svga = 1; then
|
||||
with_svga=yes
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$with_x11" != yes; then
|
||||
can_compile_x11=1
|
||||
AC_CHECK_HEADER([X11/Xlib.h], [], [ can_compile_x11=0 ])
|
||||
|
Loading…
Reference in New Issue
Block a user