pkgsrc/cad/spice/patches/patch-ao
dmcmahill fe4bb072fe - added missing -Wl,-Rpath for the X11 libraries
- fixed program version number reported when spice is run to make it consistent
  with the version of the program.
- several patches to fix compilation warnings due to missing header files and
  some inconsistent variable types.
- broke out previous patch-aa which patched several files into 1 patch per file.
- fixed some code which returned the address of a local char array variable.
- added GNU readline support (a huge improvement in the interface)
- changed USE_X11BASE to USE_X11.  No reason to install into X11BASE.
- removed 'x' target from package Makefile
1999-10-01 17:05:14 +00:00

13 lines
401 B
Text

$NetBSD: patch-ao,v 1.1 1999/10/01 17:05:16 dmcmahill Exp $
--- src/lib/hlp/readhelp.c.orig Wed Apr 21 03:56:00 1993
+++ src/lib/hlp/readhelp.c Thu Sep 30 10:06:32 1999
@@ -42,6 +42,6 @@
static char *getsubject();
static toplink *getsubtoplink();
-extern void sortlist(), tlfree();
-extern int sortcmp();
+static void sortlist(), tlfree();
+static int sortcmp();
static topic *alltopics = NULL;