12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- $NetBSD: patch-ad,v 1.2 2007/12/31 02:51:56 obache Exp $
- --- configure.orig 2007-03-24 17:11:07.000000000 +0000
- +++ configure
- @@ -21284,6 +21284,77 @@ fi
- done
-
-
- +{ echo "$as_me:$LINENO: checking for i386_iopl in -li386" >&5
- +echo $ECHO_N "checking for i386_iopl in -li386... $ECHO_C" >&6; }
- +if test "${ac_cv_lib_i386_i386_iopl+set}" = set; then
- + echo $ECHO_N "(cached) $ECHO_C" >&6
- +else
- + ac_check_lib_save_LIBS=$LIBS
- +LIBS="-li386 $LIBS"
- +cat >conftest.$ac_ext <<_ACEOF
- +/* confdefs.h. */
- +_ACEOF
- +cat confdefs.h >>conftest.$ac_ext
- +cat >>conftest.$ac_ext <<_ACEOF
- +/* end confdefs.h. */
- +
- +/* Override any GCC internal prototype to avoid an error.
- + Use char because int might match the return type of a GCC
- + builtin and then its argument prototype would still apply. */
- +#ifdef __cplusplus
- +extern "C"
- +#endif
- +char i386_iopl ();
- +int
- +main ()
- +{
- +return i386_iopl ();
- + ;
- + return 0;
- +}
- +_ACEOF
- +rm -f conftest.$ac_objext conftest$ac_exeext
- +if { (ac_try="$ac_link"
- +case "(($ac_try" in
- + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
- + *) ac_try_echo=$ac_try;;
- +esac
- +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
- + (eval "$ac_link") 2>conftest.er1
- + ac_status=$?
- + grep -v '^ *+' conftest.er1 >conftest.err
- + rm -f conftest.er1
- + cat conftest.err >&5
- + echo "$as_me:$LINENO: \$? = $ac_status" >&5
- + (exit $ac_status); } && {
- + test -z "$ac_c_werror_flag" ||
- + test ! -s conftest.err
- + } && test -s conftest$ac_exeext &&
- + $as_test_x conftest$ac_exeext; then
- + ac_cv_lib_i386_i386_iopl=yes
- +else
- + echo "$as_me: failed program was:" >&5
- +sed 's/^/| /' conftest.$ac_ext >&5
- +
- + ac_cv_lib_i386_i386_iopl=no
- +fi
- +
- +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
- + conftest$ac_exeext conftest.$ac_ext
- +LIBS=$ac_check_lib_save_LIBS
- +fi
- +{ echo "$as_me:$LINENO: result: $ac_cv_lib_i386_i386_iopl" >&5
- +echo "${ECHO_T}$ac_cv_lib_i386_i386_iopl" >&6; }
- +if test $ac_cv_lib_i386_i386_iopl = yes; then
- + cat >>confdefs.h <<_ACEOF
- +#define HAVE_LIBI386 1
- +_ACEOF
- +
- + LIBS="-li386 $LIBS"
- +
- +fi
- +
- +
- # Check whether --enable-realtime was given.
- if test "${enable_realtime+set}" = set; then
- enableval=$enable_realtime; if test "$enableval" = yes
|