aboutsummaryrefslogtreecommitdiffstats
path: root/testing/gpm/03-gpmroot.patch
diff options
context:
space:
mode:
authorCarlo Landmeter <clandmeter@gmail.com>2016-08-25 15:26:24 +0200
committerCarlo Landmeter <clandmeter@gmail.com>2016-08-25 15:26:24 +0200
commitb6af1e02efe594039707cd882517663d5370f375 (patch)
treeff9c2d55873e051e82972ba64c017352d3a75d34 /testing/gpm/03-gpmroot.patch
parenta71346b7acebc600960a98c84fb32cfd72fe864b (diff)
downloadaports-b6af1e02efe594039707cd882517663d5370f375.tar.bz2
aports-b6af1e02efe594039707cd882517663d5370f375.tar.xz
testing/[multiple]: move unmaintained packages
This moves all packages from testing to unmaintained which have not been updated for atleast 6 months. If you are affected by this commit please follow this proceddure: * make sure your packages build on all architectures * move your pacakge(s) back to testing * if you want to keep this package and can maintain it (or find somebody to maintain it for you) for a minimum of 6 months ask it to be moved to community
Diffstat (limited to 'testing/gpm/03-gpmroot.patch')
-rw-r--r--testing/gpm/03-gpmroot.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/testing/gpm/03-gpmroot.patch b/testing/gpm/03-gpmroot.patch
deleted file mode 100644
index bbfdfc7028..0000000000
--- a/testing/gpm/03-gpmroot.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-commit 9b66298a4262bfd90f3701c7f48c9dcf7a157cac
-Author: Isaac Dunham <ibid.ag@gmail.com>
-Date: Thu Feb 11 16:54:32 2016 -0800
-
- make gpm-root build
-
- * use sigemptyset() instead of nonportable equivalents
- * if SA_INTERRUPT is undefined, set sa_flags to 0 because the implementation
- defaults to interrupt mode (thanks to nsz for pointing out missing
- initialization)
-
-diff --git a/src/prog/gpm-root.y b/src/prog/gpm-root.y
-index 069d801..ed363f4 100644
---- a/src/prog/gpm-root.y
-+++ b/src/prog/gpm-root.y
-@@ -76,6 +76,10 @@
- #undef YYDEBUG
- #endif
-
-+#ifndef SA_INTERRUPT
-+#define SA_INTERRUPT 0
-+#endif
-+
- #define USER_CFG ".gpm-root"
- #define SYSTEM_CFG SYSCONFDIR "/gpm-root.conf"
-
-@@ -1196,11 +1200,7 @@ int main(int argc, char **argv)
- LOG_DAEMON : LOG_USER);
- /* reap your zombies */
- childaction.sa_handler=reap_children;
--#if defined(__GLIBC__)
-- __sigemptyset(&childaction.sa_mask);
--#else /* __GLIBC__ */
-- childaction.sa_mask=0;
--#endif /* __GLIBC__ */
-+ sigemptyset(&childaction.sa_mask);
- childaction.sa_flags=SA_INTERRUPT; /* need to break the select() call */
- sigaction(SIGCHLD,&childaction,NULL);
-