소스 검색

libarchive: Silence API deprecation warnings

CMake uses old libarchive APIs for now.
Brad King 12 년 전
부모
커밋
bae3a73cee
1개의 변경된 파일2개의 추가작업 그리고 5개의 파일을 삭제
  1. 2 5
      Utilities/cmlibarchive/libarchive/archive.h

+ 2 - 5
Utilities/cmlibarchive/libarchive/archive.h

@@ -104,11 +104,8 @@
 #define	__LA_PRINTF(fmtarg, firstvararg)	/* nothing */
 #endif
 
-#if defined(__GNUC__) && __GNUC__ >= 3 && __GNUC_MINOR__ >= 1
-# define __LA_DEPRECATED __attribute__((deprecated))
-#else
-# define __LA_DEPRECATED
-#endif
+/* CMake uses some deprecated APIs to build with old libarchive versions.  */
+#define __LA_DEPRECATED
 
 #ifdef __cplusplus
 extern "C" {