libintl.patch

来自「VLC Player Source Code」· PATCH 代码 · 共 22 行

PATCH
22
字号
--- gettext/gettext-runtime/intl/libgnuintl.h.in	2006-12-03 17:42:40.265625000 -0500+++ gettext/gettext-runtime/intl/libgnuintl.h.in	2006-12-04 19:27:03.125000000 -0500@@ -88,7 +88,7 @@    If he doesn't, we choose the method.  A third possible method is    _INTL_REDIRECT_ASM, supported only by GCC.  */ #if !(defined _INTL_REDIRECT_INLINE || defined _INTL_REDIRECT_MACROS)-# if __GNUC__ >= 2 && !(__APPLE_CC__ > 1) && !defined __MINGW32__ && !(__GNUC__ == 2 && defined _AIX) && (defined __STDC__ || defined __cplusplus)+# if __GNUC__ >= 2 && !((defined __APPLE_CC__) && (__APPLE_CC__ > 1)) && !defined __MINGW32__ && !(__GNUC__ == 2 && defined _AIX) && (defined __STDC__ || defined __cplusplus) #  define _INTL_REDIRECT_ASM # else #  ifdef __cplusplus@@ -110,7 +110,7 @@ /* _INTL_MAY_RETURN_STRING_ARG(n) declares that the given function may return    its n-th argument literally.  This enables GCC to warn for example about    printf (gettext ("foo %y")).  */-#if __GNUC__ >= 3 && !(__APPLE_CC__ > 1 && defined __cplusplus)+#if __GNUC__ >= 3 && !((defined __APPLE_CC__) && (__APPLE_CC__ > 1) && defined __cplusplus) # define _INTL_MAY_RETURN_STRING_ARG(n) __attribute__ ((__format_arg__ (n))) #else # define _INTL_MAY_RETURN_STRING_ARG(n)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?