diff options
author | Will Woods <wwoods@gentoo.org> | 2003-05-17 00:46:32 +0000 |
---|---|---|
committer | Will Woods <wwoods@gentoo.org> | 2003-05-17 00:46:32 +0000 |
commit | 12d0467d06dfb4c4f47259b0e6d085dc175d115a (patch) | |
tree | 343bec747d7d78a1b7103d2b898fab4df379d943 /x11-plugins/wmnet/files | |
parent | gcc-3.3 needs some testing + portage updates (diff) | |
download | gentoo-2-12d0467d06dfb4c4f47259b0e6d085dc175d115a.tar.gz gentoo-2-12d0467d06dfb4c4f47259b0e6d085dc175d115a.tar.bz2 gentoo-2-12d0467d06dfb4c4f47259b0e6d085dc175d115a.zip |
CFLAGS fix, support for non-x86, added ~alpha to KEYWORDS
Diffstat (limited to 'x11-plugins/wmnet/files')
-rw-r--r-- | x11-plugins/wmnet/files/wmnet-1.06-nonx86.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-plugins/wmnet/files/wmnet-1.06-nonx86.patch b/x11-plugins/wmnet/files/wmnet-1.06-nonx86.patch new file mode 100644 index 000000000000..8e9005512396 --- /dev/null +++ b/x11-plugins/wmnet/files/wmnet-1.06-nonx86.patch @@ -0,0 +1,11 @@ +--- wmnet-1.06/wmnet.c 2000-05-04 21:01:14.000000000 -0400 ++++ wmnet-1.06-ww/wmnet.c 2003-05-16 18:43:02.000000000 -0400 +@@ -342,7 +342,7 @@ + signal_action.sa_handler = got_signal; + sigemptyset(&signal_action.sa_mask); + signal_action.sa_flags = (SA_NOCLDSTOP|SA_RESTART); +-#ifdef linux ++#if defined(linux) && !defined(__alpha__) && !defined(__hppa__) && !defined(__ia64__) + signal_action.sa_restorer = NULL; + #endif + if ((sigaction(SIGCHLD, &signal_action, NULL) == -1) || |