Description: FTBFS with eglibc-2.17
 The macro gets has been removed on recent eglibc,
 but the upstream package for GNU Rush contains
 embedded code from GNUlib which uses some tests
 accessing gets.
 .
 Protect against accessing that macro.
Bug-Debian: http://bugs.debian.org/701417
Author: Daniel T Chen <crimsun@ubuntu.com>
Forwarded: no
Last-Update: 2013-04-17

--- rush-1.7+dfsg.orig/gnu/stdio.in.h	2010-06-13 13:14:59.000000000 -0400
+++ rush-1.7+dfsg/gnu/stdio.in.h	2013-04-17 17:02:44.379606292 -0400
@@ -138,8 +138,10 @@
 /* It is very rare that the developer ever has full control of stdin,
    so any use of gets warrants an unconditional warning.  Assume it is
    always declared, since it is required by C89.  */
+#ifdef gets
 #undef gets
 _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
+#endif
 
 #if @GNULIB_FOPEN@
 # if @REPLACE_FOPEN@
