]> git.sesse.net Git - vlc/commitdiff
vlc.h: Don't actually put the __attribute__((deprecated)) when the header is used...
authorPierre d'Herbemont <pdherbemont@videolan.org>
Wed, 26 Mar 2008 09:14:17 +0000 (10:14 +0100)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Wed, 26 Mar 2008 16:36:05 +0000 (17:36 +0100)
include/vlc/vlc.h

index e3d16451d200bc453c5815d27b4976680627bc86..95212e4ab331543eaee84c62ee99930f96eee075 100644 (file)
@@ -169,11 +169,16 @@ struct vlc_list_t
  *****************************************************************************/
 
 #ifndef VLC_DEPRECATED_API
-#if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
+# ifdef __LIBVLC__
+/* Avoid unuseful warnings from libvlc with our deprecated APIs */
+#    define VLC_DEPRECATED_API VLC_PUBLIC_API
+# else /* __LIBVLC__ */
+#  if defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ > 0)
 #    define VLC_DEPRECATED_API VLC_PUBLIC_API __attribute__((deprecated))
-#else
+#  else
 #    define VLC_DEPRECATED_API VLC_PUBLIC_API
-#endif
+#  endif
+# endif /* __LIBVLC__ */
 #endif
 
 /*****************************************************************************