- Timestamp:
- Oct 5, 2008, 5:50:11 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/configure.ac
r2864 r2871 114 114 115 115 AC_MSG_CHECKING(for fsin/fcos) 116 AC_TRY_COMPILE([],[double x; asm ("fsin\n\tfcos":"=t"(x):);],116 AC_TRY_COMPILE([],[double x; asm volatile("fsin\n\tfcos":"=t"(x):);], 117 117 [AC_MSG_RESULT(yes) 118 AC_DEFINE(HAVE_FSIN_FCOS, 1, [Define to 1 if you have the `fsin' and `fcos' operands.])],118 AC_DEFINE(HAVE_FSIN_FCOS, 1, [Define to 1 if you have the `fsin' and `fcos' instructions.])], 119 119 [AC_MSG_RESULT(no)]) 120 120 121 121 AC_MSG_CHECKING(for fldln2/fxch/fyl2x) 122 AC_TRY_COMPILE([],[double x; asm ("fldln2; fldln2; fxch; fyl2x":"=t"(x):);],122 AC_TRY_COMPILE([],[double x; asm volatile("fldln2; fldln2; fxch; fyl2x":"=t"(x):);], 123 123 [AC_MSG_RESULT(yes) 124 AC_DEFINE(HAVE_FLDLN2, 1, [Define to 1 if you have the `fldln2' and other floating point s operands.])],124 AC_DEFINE(HAVE_FLDLN2, 1, [Define to 1 if you have the `fldln2' and other floating point instructions.])], 125 125 [AC_MSG_RESULT(no)]) 126 126
Note: See TracChangeset
for help on using the changeset viewer.