shithub: freetype+ttf2subf

Download patch

ref: f53ccf6f8f3d1c5c717b0edd0529ef677c981f22
parent: 10ad11ab958ebddf0948af359122b13512e09ff1
author: Werner Lemberg <[email protected]>
date: Tue Aug 15 03:17:42 EDT 2017

Minor comment fix.

git/fs: mount .git/fs: mount/attach disallowed
--- a/include/freetype/ftmac.h
+++ b/include/freetype/ftmac.h
@@ -35,11 +35,12 @@
 FT_BEGIN_HEADER
 
 
-/* gcc-3.4.1 and later can warn about functions tagged as deprecated */
+  /* gcc-3.1 and later can warn about functions tagged as deprecated */
 #ifndef FT_DEPRECATED_ATTRIBUTE
-#if defined(__GNUC__)                                               && \
-    ((__GNUC__ >= 4) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)))
-#define FT_DEPRECATED_ATTRIBUTE  __attribute__((deprecated))
+#if defined( __GNUC__ )                                     && \
+    ( ( __GNUC__ >= 4 )                                  ||    \
+      ( ( __GNUC__ == 3 ) && ( __GNUC_MINOR__ >= 1 ) ) )
+#define FT_DEPRECATED_ATTRIBUTE  __attribute__(( deprecated ))
 #else
 #define FT_DEPRECATED_ATTRIBUTE
 #endif