pkgsrc/cad/gwave/patches/patch-aa
dmcmahill 712a4b2905 update to gwave-20060606
Most of the previous pkgsrc patches have been incorporated upstream (yay!).

New in 20060606
- ??

New in 20051222
- full-height vertical scrollbar appears if the total height of all
panels becomes larger than the window.
- new panel type "jumbo" stays larger even when things get crowded
- most deprecated guile calls removed.  Guile 1.6 or later is now required.

New in 20050928
- ALPHA RELEASE: may crash.  do not rely on for production use.
- handling of multi-sweep datafiles
- vertical scrollbars on label/measure area in each wavepanel make handling
large numbers of waveforms easier.

New in 20031202
- Got docstring extraction from C source to .txt files in doc directory working again
- applied submitted patch that cleans up warnings from gcc3 about multiline text strings in C code

New in 20030917
- bugfixes to make the new print/plot stuff work better
- path to working gnu graph found by configure is passed to scheme code
2007-11-15 23:53:48 +00:00

19 lines
420 B
Text

$NetBSD: patch-aa,v 1.5 2007/11/15 23:53:48 dmcmahill Exp $
- fix __inline__ which sunpro doesn't like
--- src/scwm_guile.c.orig 2005-12-23 05:07:36.000000000 +0000
+++ src/scwm_guile.c
@@ -42,6 +42,12 @@
#include "dmalloc.h"
#endif
+#ifndef __GNUC__
+#ifndef __inline__
+#define __inline__
+#endif
+#endif
+
extern char *prog_name;
XSCM_HOOK(error_hook, "error-hook", 5, (SCM a, SCM b, SCM c, SCM d, SCM e),