Made unaligned access test effective.

This commit is contained in:
Eric Pouech 2000-12-29 17:41:42 +00:00 committed by Alexandre Julliard
parent 9a37e505ed
commit 4a990585f7
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -5400,7 +5400,7 @@ fi
fi
echo "$ac_t""$wine_cv_allow_unaligned_access" 1>&6
if test "$wine_allow_unaligned_access" = "yes"
if test "$wine_cv_allow_unaligned_access" = "yes"
then
cat >> confdefs.h <<\EOF
#define ALLOW_UNALIGNED_ACCESS 1

View File

@ -792,7 +792,7 @@ main()
exit(0);
} ], wine_cv_allow_unaligned_access=yes, wine_cv_allow_unaligned_access=no,
wine_cv_allow_unaligned_access=no ) ])
if test "$wine_allow_unaligned_access" = "yes"
if test "$wine_cv_allow_unaligned_access" = "yes"
then
AC_DEFINE(ALLOW_UNALIGNED_ACCESS)
fi