summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/stdio.in.h2
-rw-r--r--packaging/cpio.changes3
2 files changed, 5 insertions, 0 deletions
diff --git a/gnu/stdio.in.h b/gnu/stdio.in.h
index 88b368b..c157c3d 100644
--- a/gnu/stdio.in.h
+++ b/gnu/stdio.in.h
@@ -138,8 +138,10 @@ _GL_WARN_ON_USE (fflush, "fflush is not always POSIX compliant - "
/* 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. */
+#if HAVE_RAW_DECL_GETS
#undef gets
_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
+#endif
#if @GNULIB_FOPEN@
# if @REPLACE_FOPEN@
diff --git a/packaging/cpio.changes b/packaging/cpio.changes
new file mode 100644
index 0000000..4c775b6
--- /dev/null
+++ b/packaging/cpio.changes
@@ -0,0 +1,3 @@
+* Fri Jan 11 2013 Anas Nashif <anas.nashif@intel.com> upstream/2.11@4dbcc78
+- Fix build with missing gets declaration
+