summaryrefslogtreecommitdiff
path: root/math/octave
diff options
context:
space:
mode:
authormaya <maya@pkgsrc.org>2018-08-12 08:35:42 +0000
committermaya <maya@pkgsrc.org>2018-08-12 08:35:42 +0000
commitfcb3017de73bd4de6db0a580602a3b30c71024d6 (patch)
treeac98e0a7e13b764fe780901d3bfca0e6f89bbe6f /math/octave
parent71fac0b915adedaf17cc472fd6214531ccbdefb0 (diff)
downloadpkgsrc-fcb3017de73bd4de6db0a580602a3b30c71024d6.tar.gz
Remove unused patches.
Diffstat (limited to 'math/octave')
-rw-r--r--math/octave/patches/patch-libinterp_build-env.in.cc13
-rw-r--r--math/octave/patches/patch-liboctave_wrappers_strftime-wrapper.c19
-rw-r--r--math/octave/patches/patch-liboctave_wrappers_strftime-wrapper.h19
3 files changed, 0 insertions, 51 deletions
diff --git a/math/octave/patches/patch-libinterp_build-env.in.cc b/math/octave/patches/patch-libinterp_build-env.in.cc
deleted file mode 100644
index b58b85249e4..00000000000
--- a/math/octave/patches/patch-libinterp_build-env.in.cc
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-libinterp_build-env.in.cc,v 1.1 2016/11/19 21:53:12 maya Exp $
-
---- libinterp/build-env.in.cc.orig 2016-11-13 15:16:10.000000000 +0000
-+++ libinterp/build-env.in.cc
-@@ -305,7 +305,7 @@ namespace octave
-
- const char *Z_LIBS = %OCTAVE_CONF_Z_LIBS%;
-
-- const char *config_opts = %OCTAVE_CONF_config_opts%;
-+ const char *config_opts = "";
- }
- }
-
diff --git a/math/octave/patches/patch-liboctave_wrappers_strftime-wrapper.c b/math/octave/patches/patch-liboctave_wrappers_strftime-wrapper.c
deleted file mode 100644
index cd619e9c3d1..00000000000
--- a/math/octave/patches/patch-liboctave_wrappers_strftime-wrapper.c
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-liboctave_wrappers_strftime-wrapper.c,v 1.2 2017/03/15 11:33:03 maya Exp $
-
-Octave's wrapper breaks gnulib portability, netbsd doesn't have struct tm_zone,
-use ifdefs to work around it
-
---- liboctave/wrappers/strftime-wrapper.c.orig 2016-11-13 15:16:10.000000000 +0000
-+++ liboctave/wrappers/strftime-wrapper.c
-@@ -36,7 +36,11 @@ along with Octave; see the file COPYING.
-
- size_t
- octave_strftime_wrapper (char *buf, size_t len, const char *fmt,
-+#ifdef __NetBSD__
-+ const struct tm *t, timezone_t *tz, int ns)
-+#else
- const struct tm *t, struct tm_zone *tz, int ns)
-+#endif
- {
- return nstrftime (buf, len, fmt, t, tz, ns);
- }
diff --git a/math/octave/patches/patch-liboctave_wrappers_strftime-wrapper.h b/math/octave/patches/patch-liboctave_wrappers_strftime-wrapper.h
deleted file mode 100644
index 37a54dd8301..00000000000
--- a/math/octave/patches/patch-liboctave_wrappers_strftime-wrapper.h
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-liboctave_wrappers_strftime-wrapper.h,v 1.2 2017/03/15 11:33:03 maya Exp $
-
-Octave's wrapper breaks gnulib portability, netbsd doesn't have struct tm_zone,
-use ifdefs to work around it
-
---- liboctave/wrappers/strftime-wrapper.h.orig 2016-11-13 15:16:10.000000000 +0000
-+++ liboctave/wrappers/strftime-wrapper.h
-@@ -35,7 +35,11 @@ extern "C" {
-
- extern size_t
- octave_strftime_wrapper (char *buf, size_t len, const char *fmt,
-+#ifdef __NetBSD__
-+ const struct tm *t, timezone_t *tz, int ns);
-+#else
- const struct tm *t, struct tm_zone *tz, int ns);
-+#endif
-
- #if defined __cplusplus
- }