components/pinentry/patches/001-util.c.patch
changeset 303 cae844b2d132
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/pinentry/patches/001-util.c.patch	Tue Jun 14 14:50:28 2011 -0700
@@ -0,0 +1,15 @@
+--- secmem/util.c	Wed Oct 28 09:42:42 2009
++++ secmem/util.c	Wed Oct 28 09:43:01 2009
+@@ -34,11 +34,10 @@
+ 
+ #ifndef TEMP_FAILURE_RETRY
+ #define TEMP_FAILURE_RETRY(expression) \
+-  (__extension__							      \
+     ({ long int __result;						      \
+        do __result = (long int) (expression);				      \
+        while (__result == -1L && errno == EINTR);			      \
+-       __result; }))
++       __result; })
+ #endif
+ 
+ #ifndef HAVE_DOSISH_SYSTEM