summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-09-02 15:48:21 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-09-02 15:48:21 +0000
commit5a45cb64923465a28a959744d9173d9ab7b61782 (patch)
treee0713a1e479371fd216e8e2f7d2405065b9557bf /configure
parentbce3947fbc373ebfea7496a2567b7c433f9ae53d (diff)
downloadmpv-5a45cb64923465a28a959744d9173d9ab7b61782.tar.bz2
mpv-5a45cb64923465a28a959744d9173d9ab7b61782.tar.xz
-lm needs to come before -laudio to avoid link errors in the NAS check.
patch by Bernd Ernesti, mplayer-dev-eng [{at}] lists [{dot}] veego [{dot}] de git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19640 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index fd2f93d092..3ea67dfb77 100755
--- a/configure
+++ b/configure
@@ -4592,7 +4592,7 @@ if test "$_nas" = auto ; then
int main(void) { return 0; }
EOF
_nas=no
- cc_check -laudio -lXt $_ld_x11 $_ld_lm && _nas=yes
+ cc_check $_ld_lm -laudio -lXt $_ld_x11 && _nas=yes
fi
if test "$_nas" = yes ; then
_def_nas='#define HAVE_NAS 1'