Replace WORDS_BIGENDIAN with HAVE_BIGENDIAN.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29440 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
cehoyos 2009-07-26 14:40:05 +00:00
parent b3186ed071
commit 06c122f001
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -2361,10 +2361,10 @@ EOF
fi
if test "$_big_endian" = yes ; then
_byte_order='big-endian'
def_words_endian='#define WORDS_BIGENDIAN 1'
def_words_endian='#define HAVE_BIGENDIAN 1'
else
_byte_order='little-endian'
def_words_endian='#undef WORDS_BIGENDIAN'
def_words_endian='#define HAVE_BIGENDIAN 0'
fi
echores "$_byte_order"