mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
3b64458b93
It is a replacement for the standard X console. Contool will flash its icon and beep when messages are written to the icon, so you can keep it closed on your desktop until a message arrives. You can modify this beeping and flashing behavior; see the man page for more details. You can instruct contool to filter and ignore certain common console messages or act upon them. Submitted by: Nick Sayer <nsayer@@quack.kfu.com> (w/changes by me) Closes PR: ports/2152
21 lines
449 B
Plaintext
21 lines
449 B
Plaintext
--- manifest.h.orig Thu Feb 24 09:55:52 1994
|
|
+++ manifest.h Sun Jan 5 13:52:40 1997
|
|
@@ -23,6 +23,9 @@
|
|
/* */
|
|
/************************************************************************/
|
|
|
|
+/* for BSD definition */
|
|
+#include <sys/param.h>
|
|
+
|
|
#define TRUE 1
|
|
#define FALSE 0
|
|
|
|
@@ -38,5 +41,7 @@
|
|
#define cond_free(x) {if (x) free(x);}
|
|
|
|
PUBLIC int errno;
|
|
+#if !(defined(BSD) && (BSD >= 199103))
|
|
PUBLIC char *sys_errlist[];
|
|
+#endif
|
|
|