diff options
author | rillig <rillig@pkgsrc.org> | 2005-08-06 18:39:02 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-08-06 18:39:02 +0000 |
commit | f1508cc3f23cb62cb6b36c68ac2fdfd592d28ea6 (patch) | |
tree | 43e255d2fc5628bb3f7622fb52519bc183d8f685 /math/octave-forge/patches | |
parent | 9914901bd6f355889d161a3e9c6b361cc950bb45 (diff) | |
download | pkgsrc-f1508cc3f23cb62cb6b36c68ac2fdfd592d28ea6.tar.gz |
Fixed an undefined reference to close(2).
Diffstat (limited to 'math/octave-forge/patches')
-rw-r--r-- | math/octave-forge/patches/patch-am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/math/octave-forge/patches/patch-am b/math/octave-forge/patches/patch-am new file mode 100644 index 00000000000..1099a783e8c --- /dev/null +++ b/math/octave-forge/patches/patch-am @@ -0,0 +1,14 @@ +$NetBSD: patch-am,v 1.1 2005/08/06 18:39:03 rillig Exp $ + +Work around an undefined reference to close(2). + +--- extra/pdb/creadpdb.cc.orig Tue May 24 23:36:40 2005 ++++ extra/pdb/creadpdb.cc Sat Aug 6 20:35:08 2005 +@@ -19,6 +19,7 @@ + #include <octave/ov-str-mat.h> + #include <sys/mman.h> + #include <fcntl.h> ++#include <unistd.h> + + #define BUFLEN 80 + |