aboutsummaryrefslogtreecommitdiffstats
path: root/testing/ustr/c99-inline.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2017-02-23 14:54:00 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2017-02-23 14:54:42 +0000
commite48dbca741b220a9f059ff2400089484082b0b32 (patch)
tree4413915222e7aacacbb392e5303b4ea70194051a /testing/ustr/c99-inline.patch
parent0030ca9f7771c9094f8a4383254ae0e52f15e864 (diff)
downloadaports-e48dbca741b220a9f059ff2400089484082b0b32.tar.bz2
aports-e48dbca741b220a9f059ff2400089484082b0b32.tar.xz
testing/ustr: new aport
String library, very low memory overhead, simple to import http://www.and.org/ustr/
Diffstat (limited to 'testing/ustr/c99-inline.patch')
-rw-r--r--testing/ustr/c99-inline.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/ustr/c99-inline.patch b/testing/ustr/c99-inline.patch
new file mode 100644
index 0000000000..dfa021fddc
--- /dev/null
+++ b/testing/ustr/c99-inline.patch
@@ -0,0 +1,30 @@
+diff -rup ustr-1.0.4-orig/ustr-compiler.h ustr-1.0.4/ustr-compiler.h
+--- ustr-1.0.4-orig/ustr-compiler.h 2008-02-15 15:12:28.000000000 -0500
++++ ustr-1.0.4/ustr-compiler.h 2008-06-13 15:25:18.000000000 -0400
+@@ -113,17 +113,23 @@
+ #endif
+
+ #ifndef USTR_CONF_EI_PROTO /* external inline */
+-# if USTR_CONF_INCLUDE_CODEONLY_HEADERS
++# if USTR_CONF_INCLUDE_CODEONLY_HEADERS || ! defined(__GNUC__) || \
++ ! USTR_CONF_COMPILE_USE_INLINE
+ # define USTR_CONF_EI_PROTO static USTR__INLINE
+ # else
+ # define USTR_CONF_EI_PROTO extern
+ # endif
+ #endif
+ #ifndef USTR_CONF_II_PROTO /* implementation of inline */
+-# if USTR_CONF_INCLUDE_CODEONLY_HEADERS
++# if USTR_CONF_INCLUDE_CODEONLY_HEADERS || ! defined(__GNUC__) || \
++ ! USTR_CONF_COMPILE_USE_INLINE
+ # define USTR_CONF_II_PROTO static USTR__INLINE
+ # else
+-# define USTR_CONF_II_PROTO extern inline
++# if defined(__GNUC_STDC_INLINE__) || defined(__GNUC_GNU_INLINE__)
++# define USTR_CONF_II_PROTO extern inline __attribute__ ((__gnu_inline__))
++# else
++# define USTR_CONF_II_PROTO extern inline
++# endif
+ # endif
+ #endif
+