pkgsrc/time/plan/patches/patch-af
jschauma f1468f69f5 Make this compile on Linux and IRIX and increase odds of working on
other non-NetBSD platforms as well (though they may need ALL_TARGET
tweaking):
- apparently some versions of Linux/gcc combinations require
  the header file errno.h included in each file in order for
  it to link (otherwise, it will compile (!?) but bail out
  when linking)
- set ALL_TARGET to LOWER_OPSYS
  this works for netbsd and linux, and should work for the other bsds
  at least.
- set ALL_TARGET differently for IRIX
- use CFLAGS instead of hard-coded ABI flags for IRIX 6
- some install-sh/install can not handle multiple files/directories at
  once.  Newer bootstrapped versions can, but for systems that still
  have the older one we may as well split this for better compatibility.
2004-06-10 22:42:42 +00:00

12 lines
341 B
Text

$NetBSD: patch-af,v 1.1 2004/06/10 22:42:43 jschauma Exp $
--- netplan.c.orig 2004-06-11 18:18:30.000000000 -0400
+++ netplan.c 2004-06-11 18:18:43.000000000 -0400
@@ -4,6 +4,7 @@
typedef void *Widget; /* dummy for prototype declarations in config.h */
+#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>