summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-08-18 19:00:05 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-08-18 19:00:05 +0000
commitd25a85f17bbad80dbf07868750a7d8c83393f6c9 (patch)
tree56d807b8d1d8c37734946fde7cdfe67aa0ec0216 /configure
parentd9bd42eb31199443b201536deb0a41fd8a283475 (diff)
downloadmpv-d25a85f17bbad80dbf07868750a7d8c83393f6c9.tar.bz2
mpv-d25a85f17bbad80dbf07868750a7d8c83393f6c9.tar.xz
spelling: big-endian and little-endian
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13048 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 26248d1c87..ba01982156 100755
--- a/configure
+++ b/configure
@@ -294,7 +294,7 @@ Advanced options:
--enable-shm build with shm support [autodetect]
--enable-altivec build with Altivec support (PowerPC) [autodetect]
--disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy() [enable]
- --enable-big-endian Force byte order to big endian [autodetect]
+ --enable-big-endian Force byte order to big-endian [autodetect]
--enable-debug[=1-3] compile debugging information into mplayer [disable]
--enable-profile compile profiling information into mplayer [disable]
--disable-sighandler disable sighandler for crashes [enable]
@@ -5740,10 +5740,10 @@ EOF
fi
fi
if test "$_big_endian" = yes ; then
- _byte_order='Big Endian'
+ _byte_order='big-endian'
_def_words_endian='#define WORDS_BIGENDIAN 1'
else
- _byte_order='Little Endian'
+ _byte_order='little-endian'
_def_words_endian='#undef WORDS_BIGENDIAN'
fi
echores "$_byte_order"