diff options
author | Alin Năstac <mrness@gentoo.org> | 2007-05-23 17:25:12 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2007-05-23 17:25:12 +0000 |
commit | 79ff7feea1e9b41da05997f20fb147f87af12475 (patch) | |
tree | ff1e7129e7059d3b553398014bfc3ea6f9ed6ad6 /net-libs/wvstreams/files | |
parent | Add ~x86-fbsd keyword. Bug #176906. (diff) | |
download | gentoo-2-79ff7feea1e9b41da05997f20fb147f87af12475.tar.gz gentoo-2-79ff7feea1e9b41da05997f20fb147f87af12475.tar.bz2 gentoo-2-79ff7feea1e9b41da05997f20fb147f87af12475.zip |
Avoid usage of obsolete member of the struct sigaction (#179401).
(Portage version: 2.1.2.7)
Diffstat (limited to 'net-libs/wvstreams/files')
-rw-r--r-- | net-libs/wvstreams/files/digest-wvstreams-4.3-r2 | 3 | ||||
-rw-r--r-- | net-libs/wvstreams/files/wvstreams-4.3-sigaction.patch | 11 |
2 files changed, 14 insertions, 0 deletions
diff --git a/net-libs/wvstreams/files/digest-wvstreams-4.3-r2 b/net-libs/wvstreams/files/digest-wvstreams-4.3-r2 new file mode 100644 index 000000000000..3b2f6d51a4f1 --- /dev/null +++ b/net-libs/wvstreams/files/digest-wvstreams-4.3-r2 @@ -0,0 +1,3 @@ +MD5 eb34544384c951fd14470d583273e02a wvstreams-4.3.tar.gz 1294177 +RMD160 fb6c480903cb725bf4911a05bfa1ef12bf05dfec wvstreams-4.3.tar.gz 1294177 +SHA256 54b2a693ef67fde375292d768fc6471bb00105870714cc4051289986a51aabb9 wvstreams-4.3.tar.gz 1294177 diff --git a/net-libs/wvstreams/files/wvstreams-4.3-sigaction.patch b/net-libs/wvstreams/files/wvstreams-4.3-sigaction.patch new file mode 100644 index 000000000000..a5da5fcdf83f --- /dev/null +++ b/net-libs/wvstreams/files/wvstreams-4.3-sigaction.patch @@ -0,0 +1,11 @@ +diff -Nru wvstreams-4.3.orig/utils/wvcrash.cc wvstreams-4.3/utils/wvcrash.cc +--- wvstreams-4.3.orig/utils/wvcrash.cc 2007-05-23 08:05:35.000000000 +0300 ++++ wvstreams-4.3/utils/wvcrash.cc 2007-05-23 20:14:37.000000000 +0300 +@@ -349,7 +349,6 @@ + act.sa_handler = wvcrash; + sigfillset(&act.sa_mask); + act.sa_flags = SA_ONSTACK | SA_RESTART; +- act.sa_restorer = NULL; + + if (sigaction(sig, &act, NULL)) + fprintf(stderr, "Failed to setup wvcrash handler for signal %d: %s\n", |