summaryrefslogtreecommitdiff
path: root/www/kwebwatch/files/patch-aa
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2002-01-20 23:14:36 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2002-01-20 23:14:36 +0000
commit595d305be5676b0d9045b838aa52c54648b551d2 (patch)
treeb181024c57eab34029ccb99f17d7c838c4f4b838 /www/kwebwatch/files/patch-aa
parentAdd bold|italic style using mkbold|mkitalic scripts (x11-fonts/mkbold|mkitalic) (diff)
o Update to 0.9.6
o bump PORTEPOCH since this version number is smaller than former one o Update WWW
Notes
Notes: svn path=/head/; revision=53416
Diffstat (limited to 'www/kwebwatch/files/patch-aa')
-rw-r--r--www/kwebwatch/files/patch-aa42
1 files changed, 0 insertions, 42 deletions
diff --git a/www/kwebwatch/files/patch-aa b/www/kwebwatch/files/patch-aa
deleted file mode 100644
index 8f9a88134de2..000000000000
--- a/www/kwebwatch/files/patch-aa
+++ /dev/null
@@ -1,42 +0,0 @@
---- kwebwatch/main.cpp.orig Sun Aug 8 19:10:47 1999
-+++ kwebwatch/main.cpp Sat Jun 17 02:49:46 2000
-@@ -23,14 +23,20 @@
-
- /* main.cpp */
-
-+#if defined(HAVE_CONFIG_H)
-+#include <../config.h>
-+#endif
-
-+#if defined(HAVE_SYS_PARAM_H)
-+#include <sys/param.h>
-+#endif
-
- #include <kapp.h>
- #include <signal.h>
-
- #include "mainwidget.h"
-
--#if defined(__hpux)
-+#if defined(__hpux) || (defined(BSD) && (BSD >= 199103))
- static void SigChild(int)
- {
- int pid;
-@@ -69,6 +75,9 @@
- // With SysV all we need to do is ignore the signal.
- // With BSD, however, we have to catch each signal
- // and execute the wait3() system call.
-+#if (defined(BSD) && (BSD >= 199103))
-+ signal(SIGCHLD, SigChild);
-+#else
- #if defined(__hpux)
- signal(SIGCLD, SigChild);
- #else
-@@ -82,6 +91,7 @@
- sigignore(SIGCHLD);
- #else
- signal(SIGCLD, SIG_IGN);
-+#endif
- #endif
- #endif
-