summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorgraziano.giuliani2016-11-05 10:22:56 +0100
committergraziano.giuliani2016-11-05 10:22:56 +0100
commitb991ecbe4d10f6ced168e0b5e9d9f646d1cc1c04 (patch)
tree7ac9c3ae0fa9437ef7f563f46029c036a84c09f2
parent22f457058e45578f7472bad11732642507f419ae (diff)
downloadaur-b991ecbe4d10f6ced168e0b5e9d9f646d1cc1c04.tar.gz
removed unneeded patch
-rw-r--r--.SRCINFO2
-rw-r--r--float_cast.patch11
2 files changed, 1 insertions, 12 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7c3d3a7dfa27..b58b41897d6d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,5 +1,5 @@
# Generated by mksrcinfo v8
-# Sat Nov 5 09:21:52 UTC 2016
+# Sat Nov 5 09:22:31 UTC 2016
pkgbase = gmt
pkgdesc = Generic Mapping Tools: Collection of tools for manipulating geographic and Cartesian data sets, and generating EPS maps.
pkgver = 5.3.1
diff --git a/float_cast.patch b/float_cast.patch
deleted file mode 100644
index 40191c7fafd2..000000000000
--- a/float_cast.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- xyz2grd.c 2015-11-06 02:45:03.000000000 -0800
-+++ xyz2grd.c 2016-03-01 16:49:49.158598917 -0800
-@@ -749,7 +749,7 @@
- if (GMT_is_verbose (GMT, GMT_MSG_VERBOSE)) {
- char line[GMT_BUFSIZ], e_value[GMT_LEN32];
- sprintf (line, "%s\n", GMT->current.setting.format_float_out);
-- (GMT_is_dnan (GMT->common.d.active[GMT_IN])) ? sprintf (e_value, "NaN") : sprintf (e_value, GMT->current.setting.format_float_out, GMT->common.d.nan_proxy[GMT_IN]);
-+ (GMT_is_dnan ((float) GMT->common.d.active[GMT_IN])) ? sprintf (e_value, "NaN") : sprintf (e_value, GMT->current.setting.format_float_out, GMT->common.d.nan_proxy[GMT_IN]);
- GMT_Report (API, GMT_MSG_VERBOSE, "Data records read: %" PRIu64 " used: %" PRIu64 " nodes filled: %" PRIu64 " nodes empty: %" PRIu64 " [set to %s]\n",
- n_read, n_used, n_filled, n_empty, e_value);
- if (n_bad) GMT_Report (API, GMT_MSG_VERBOSE, "%" PRIu64 " records unreadable\n", n_bad);