diff options
author | Matthew Hunt <mph@FreeBSD.org> | 1998-04-19 18:03:27 +0000 |
---|---|---|
committer | Matthew Hunt <mph@FreeBSD.org> | 1998-04-19 18:03:27 +0000 |
commit | d14c79c7f829e124d9b7922a78e584bea64c8390 (patch) | |
tree | 341b9dc7279f124f2bc6feb66cc1546c2c2ed2ac /print/bibview/files/patch-ab | |
parent | Move fonts to lib/X11/fonts/misc. (diff) |
Apply patches by maintainer:
- Update maintainer's email address
- Fix a typecast problem
And my modifications:
- Change "version required" line in Makefile header
- Change patch to Imakefile to not override CC and CFLAGS.
PR: 6350
Submitted by: David A. Bader <dbader@eece.unm.edu>
Notes
Notes:
svn path=/head/; revision=10592
Diffstat (limited to 'print/bibview/files/patch-ab')
-rw-r--r-- | print/bibview/files/patch-ab | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/print/bibview/files/patch-ab b/print/bibview/files/patch-ab index 8887fc743dcb..3e47c2485e64 100644 --- a/print/bibview/files/patch-ab +++ b/print/bibview/files/patch-ab @@ -1,5 +1,5 @@ ---- bibview.c.orig Fri Apr 21 18:49:15 1995 -+++ bibview.c Thu Sep 11 13:08:28 1997 +--- bibview.c.orig Fri Apr 21 10:49:15 1995 ++++ bibview.c Sun Apr 19 07:33:25 1998 @@ -170,9 +170,9 @@ /* fallback resources */ static char *fallback_resources[] = { @@ -12,3 +12,21 @@ #endif NULL }; +@@ -824,7 +824,7 @@ + + /* install signal handler */ + for (i = 1; i<= 15; i++) +- signal(i, signalHandler); ++ signal(i, (sig_t)signalHandler); + + /* install Xtoolkit handlers */ + XtSetWarningHandler((XtErrorHandler)Xt_warningHandler); +@@ -891,7 +891,7 @@ + static void + signalHandler (int s, int code) + { +- signal(s, signalHandler); ++ signal(s, (sig_t)signalHandler); + } + + |