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