diff options
author | 2014-12-22 10:16:44 +0000 | |
---|---|---|
committer | 2014-12-22 10:16:44 +0000 | |
commit | 516d5560b81b6d0d7d6aba0df5f986967cdb2337 (patch) | |
tree | 9c85650ddf757d3fa32529dbaf5a97d8c7213a97 /sys-apps/man-db/files | |
parent | version bump (diff) | |
download | gentoo-2-516d5560b81b6d0d7d6aba0df5f986967cdb2337.tar.gz gentoo-2-516d5560b81b6d0d7d6aba0df5f986967cdb2337.tar.bz2 gentoo-2-516d5560b81b6d0d7d6aba0df5f986967cdb2337.zip |
Version bump. Removed old
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'sys-apps/man-db/files')
-rw-r--r-- | sys-apps/man-db/files/man-db-2.6.0.2-flock.h.patch | 69 | ||||
-rw-r--r-- | sys-apps/man-db/files/man-db-2.6.1-no-gets.patch | 24 |
2 files changed, 0 insertions, 93 deletions
diff --git a/sys-apps/man-db/files/man-db-2.6.0.2-flock.h.patch b/sys-apps/man-db/files/man-db-2.6.0.2-flock.h.patch deleted file mode 100644 index 6fbce45d1562..000000000000 --- a/sys-apps/man-db/files/man-db-2.6.0.2-flock.h.patch +++ /dev/null @@ -1,69 +0,0 @@ -Bug #371937 - -=== modified file 'NEWS' ---- a/NEWS 2011-04-13 10:57:54 +0000 -+++ a/NEWS 2011-06-16 11:22:10 +0000 -@@ -1,3 +1,13 @@ -+man-db 2.6.1 -+============ -+ -+Major changes since man-db 2.6.0.2: -+ -+ Fixes: -+ ------ -+ -+ o --with-db=db* and --with-db=ndbm compile again. -+ - man-db 2.6.0.2 (13 April 2011) - ============================== - - -=== modified file 'libdb/db_btree.c' ---- a/libdb/db_btree.c 2010-09-26 21:08:59 +0000 -+++ a/libdb/db_btree.c 2011-06-16 11:22:10 +0000 -@@ -32,10 +32,7 @@ - #include <errno.h> - #include <string.h> - --#if HAVE_SYS_FILE_H --# include <sys/file.h> /* for flock() */ --#endif -- -+#include <sys/file.h> /* for flock() */ - #include <sys/types.h> /* for open() */ - #include <sys/stat.h> - -@@ -48,7 +45,6 @@ - #include "manconfig.h" - - #include "error.h" --#include "flock.h" - #include "hashtable.h" - - #include "mydbm.h" - -=== modified file 'libdb/db_ndbm.c' ---- a/libdb/db_ndbm.c 2008-12-03 10:57:14 +0000 -+++ a/libdb/db_ndbm.c 2011-06-16 11:22:10 +0000 -@@ -29,10 +29,7 @@ - #include <stdlib.h> - #include <stdio.h> - --#if HAVE_SYS_FILE_H --# include <sys/file.h> /* for flock() */ --#endif -- -+#include <sys/file.h> /* for flock() */ - #include <sys/types.h> /* for open() */ - #include <sys/stat.h> - -@@ -46,8 +43,6 @@ - - #include "manconfig.h" - --#include "flock.h" -- - #include "mydbm.h" - #include "db_storage.h" - - diff --git a/sys-apps/man-db/files/man-db-2.6.1-no-gets.patch b/sys-apps/man-db/files/man-db-2.6.1-no-gets.patch deleted file mode 100644 index 787e6901bc07..000000000000 --- a/sys-apps/man-db/files/man-db-2.6.1-no-gets.patch +++ /dev/null @@ -1,24 +0,0 @@ -https://bugs.gentoo.org/427252 - -hack until man-db pulls a newer gnulib version - -From 66712c23388e93e5c518ebc8515140fa0c807348 Mon Sep 17 00:00:00 2001 -From: Eric Blake <eblake@redhat.com> -Date: Thu, 29 Mar 2012 13:30:41 -0600 -Subject: [PATCH] stdio: don't assume gets any more - -Gnulib intentionally does not have a gets module, and now that C11 -and glibc have dropped it, we should be more proactive about warning -any user on a platform that still has a declaration of this dangerous -interface. - ---- a/gnulib/lib/stdio.in.h -+++ b/gnulib/lib/stdio.in.h -@@ -125,7 +125,6 @@ - /* 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. */ --_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead"); - #endif - - |