diff options
author | Tobias Geerinckx-Rice <[email protected]> | 2019-03-04 18:36:28 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <[email protected]> | 2019-03-04 19:07:10 +0100 |
commit | ad257ec8b578b21fc36b142396324df9e6613d4a (patch) | |
tree | 1c8f001204ef7c008e1876f3bf1febb08bd1c87d /gnu/packages/patches/thermald-make-int-max32-visible.patch | |
parent | 96f39b2a6e03d36582108efb11f915b08c454b7c (diff) |
gnu: thermald: Update to 1.8.
* gnu/packages/admin.scm (thermald): Update to 1.8.
[source]: Add patch.
* gnu/packages/patches/thermald-make-int-max32-visible.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/patches/thermald-make-int-max32-visible.patch')
-rw-r--r-- | gnu/packages/patches/thermald-make-int-max32-visible.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/patches/thermald-make-int-max32-visible.patch b/gnu/packages/patches/thermald-make-int-max32-visible.patch new file mode 100644 index 0000000000..eddbb23547 --- /dev/null +++ b/gnu/packages/patches/thermald-make-int-max32-visible.patch @@ -0,0 +1,24 @@ +From 5fb947886bf1e40475edf930fb2b284c24c8cb9a Mon Sep 17 00:00:00 2001 +From: Sanel Zukan <[email protected]> +Date: Sun, 23 Dec 2018 00:04:34 +0100 +Subject: [PATCH] Make sure INT_MAX32 is visible. + +--- + src/thd_trip_point.h | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/src/thd_trip_point.h b/src/thd_trip_point.h +index 0eedc95..89eb083 100644 +--- a/src/thd_trip_point.h ++++ b/src/thd_trip_point.h +@@ -29,6 +29,10 @@ + #include "thd_sys_fs.h" + #include "thd_preference.h" + #include "thd_cdev.h" ++ ++#define __STDC_LIMIT_MACROS ++#include <stdint.h> ++ + #include <time.h> + #include <vector> + #include <algorithm> // std::sort |