[MPlayer-cvslog] r30295 - trunk/configure

reimar subversion at mplayerhq.hu
Tue Jan 12 22:12:23 CET 2010


Author: reimar
Date: Tue Jan 12 22:12:23 2010
New Revision: 30295

Log:
Change -pipe check to avoid misdetecting it as available for Sun's compiler.

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Tue Jan 12 21:26:15 2010	(r30294)
+++ trunk/configure	Tue Jan 12 22:12:23 2010	(r30295)
@@ -2415,7 +2415,8 @@ echocheck "assembler support of -pipe op
 cat > $TMPC << EOF
 int main(void) { return 0; }
 EOF
-cc_check -pipe && _pipe="-pipe" && echores "yes" || echores "no"
+# -I. helps to detect compilers that just misunderstand -pipe like Sun C
+cc_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
 
 
 echocheck "compiler support of named assembler arguments"


More information about the MPlayer-cvslog mailing list