|
From: Rob C. <ce...@im...> - 2000-09-11 00:02:47
|
Not sure how long it will be before the change works itself into the sparc
tree. Since its such a small change might just put it in a SPARC.FAQ file
or in the TODO list for monitoring.
Binaries to appear Monday in the same location.
Here is the small patch for the sparc linux version (dump/tape.c):
--- tape.c.orig Sun Sep 10 18:27:40 2000
+++ tape.c Sun Sep 10 15:44:45 2000
@@ -895,7 +895,11 @@
master = getpid();
{ struct sigaction sa;
+/* Not defined for SPARC Linux - yet; might be better as a
+ check in configure HAVE_SA_SIGACTION */
+#if !defined(__linux__) && !defined(__sparc__)
sa.sa_sigaction = NULL;
+#endif
sigemptyset(&sa.sa_mask);
sa.sa_flags = 0;
sa.sa_handler = dumpabort;
NOTE: to build the programs succesfully from SRPMS you need the latest
greatest rpm utilites.
|