[MPlayer-cvslog] r19640 - trunk/configure

diego subversion at mplayerhq.hu
Sat Sep 2 17:48:21 CEST 2006


Author: diego
Date: Sat Sep  2 17:48:21 2006
New Revision: 19640

Modified:
   trunk/configure

Log:
-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


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Sat Sep  2 17:48:21 2006
@@ -4592,7 +4592,7 @@
 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'



More information about the MPlayer-cvslog mailing list