Move platform-specific stuff together.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22057 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-01-28 22:31:53 +00:00
parent 4cd478c1f1
commit 03a1bed310
1 changed files with 6 additions and 5 deletions

11
configure vendored
View File

@ -690,6 +690,12 @@ elif linux ; then
_ranlib='true'
fi
if win32 ; then
_exesuf=".exe"
# -lwinmm is always needed for osdep/timer-win2.c
_ld_extra="$_ld_extra -lwinmm"
fi
# Check how to call 'head' and 'tail'. Newer versions spit out warnings
# if used as 'head -1' instead of 'head -n 1', but older versions don't
# know about '-n'.
@ -2263,11 +2269,6 @@ test -z "$_mandir" && _mandir="$_prefix/man"
test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
test -z "$_libdir" && _libdir="$_prefix/lib"
# For lack of a better place to put platform-specific stuff ..
win32 && _exesuf=".exe"
# -lwinmm is always needed for osdep/timer-win2.c
win32 && _ld_extra="$_ld_extra -lwinmm"
if x86_32 ; then
# Checking assembler (_as) compatibility...