[vlc-commits] Use __ANDROID__ instead of home defined HAVE_ANDROID.
    Rémi Duraffort 
    git at videolan.org
       
    Mon Feb 28 19:15:17 CET 2011
    
    
  
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Mon Feb 28 19:14:57 2011 +0100| [ed4914971fd8d097e1a2a3361ba09481f393f219] | committer: Rémi Duraffort
Use __ANDROID__ instead of home defined HAVE_ANDROID.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ed4914971fd8d097e1a2a3361ba09481f393f219
---
 include/vlc_fixups.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/vlc_fixups.h b/include/vlc_fixups.h
index 19c1b88..4f96d09 100644
--- a/include/vlc_fixups.h
+++ b/include/vlc_fixups.h
@@ -94,13 +94,13 @@ size_t strlcpy (char *, const char *, size_t);
 #endif
 
 #ifndef HAVE_STRTOF
-#ifndef HAVE_ANDROID
+#ifndef __ANDROID__
 float strtof (const char *, char **);
 #endif
 #endif
 
 #ifndef HAVE_ATOF
-#ifndef HAVE_ANDROID
+#ifndef __ANDROID__
 double atof (const char *);
 #endif
 #endif
    
    
More information about the vlc-commits
mailing list