847d17
diff -rup ustr-1.0.4-orig/ustr-compiler.h ustr-1.0.4/ustr-compiler.h
847d17
--- ustr-1.0.4-orig/ustr-compiler.h	2008-02-15 15:12:28.000000000 -0500
847d17
+++ ustr-1.0.4/ustr-compiler.h	2008-06-13 15:25:18.000000000 -0400
847d17
@@ -113,17 +113,23 @@
847d17
 #endif
847d17
 
847d17
 #ifndef USTR_CONF_EI_PROTO /* external inline */
847d17
-# if USTR_CONF_INCLUDE_CODEONLY_HEADERS
847d17
+# if USTR_CONF_INCLUDE_CODEONLY_HEADERS || ! defined(__GNUC__) || \
847d17
+     ! USTR_CONF_COMPILE_USE_INLINE
847d17
 #  define USTR_CONF_EI_PROTO static USTR__INLINE
847d17
 # else
847d17
 #  define USTR_CONF_EI_PROTO extern
847d17
 # endif
847d17
 #endif
847d17
 #ifndef USTR_CONF_II_PROTO /* implementation of inline */
847d17
-# if USTR_CONF_INCLUDE_CODEONLY_HEADERS
847d17
+# if USTR_CONF_INCLUDE_CODEONLY_HEADERS || ! defined(__GNUC__) || \
847d17
+     ! USTR_CONF_COMPILE_USE_INLINE
847d17
 #  define USTR_CONF_II_PROTO static USTR__INLINE
847d17
 # else
847d17
-#  define USTR_CONF_II_PROTO extern inline
847d17
+#  if defined(__GNUC_STDC_INLINE__) || defined(__GNUC_GNU_INLINE__)
847d17
+#   define USTR_CONF_II_PROTO extern inline __attribute__ ((__gnu_inline__))
847d17
+#  else
847d17
+#   define USTR_CONF_II_PROTO extern inline
847d17
+#  endif
847d17
 # endif
847d17
 #endif
847d17