summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2013-01-11 21:06:49 -0800
committerAnas Nashif <anas.nashif@intel.com>2013-01-11 21:06:49 -0800
commit4193eb5e6d489ae253d7c27250d536109ea23a44 (patch)
treedc6175552884baec2b964d435ce9a7354d76871f
parent4dbcc783a0d281860c10516b067076db14aec293 (diff)
downloadcpio-4193eb5e6d489ae253d7c27250d536109ea23a44.tar.gz
cpio-4193eb5e6d489ae253d7c27250d536109ea23a44.tar.bz2
cpio-4193eb5e6d489ae253d7c27250d536109ea23a44.zip
Fix build with missing gets declarationsubmit/trunk/20130112.050652
-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
+