[MPlayer-cvslog] r20582 - trunk/configure

reimar subversion at mplayerhq.hu
Wed Nov 1 18:05:19 CET 2006


Author: reimar
Date: Wed Nov  1 18:05:17 2006
New Revision: 20582

Modified:
   trunk/configure

Log:
gcc optimized != 0 check for extern function away, thus linking
would still always succeed in cdda and cdio tests.


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Wed Nov  1 18:05:17 2006
@@ -5288,7 +5288,7 @@
 // This need a better test. How ?
 int main(void) {
     void *test = cdda_verbose_set;
-    return !test;
+    return test == (void *)1;
 }
 EOF
     _cdparanoia=no
@@ -5317,7 +5317,7 @@
 {
     void *test = cdda_verbose_set;
     printf("%s\n", CDIO_VERSION);
-    return !test;
+    return test == (void *)1;
     
 }
 EOF



More information about the MPlayer-cvslog mailing list