summaryrefslogtreecommitdiff
path: root/gnu/packages/patches
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2022-06-13 17:16:54 +0200
committerAndreas Enge <andreas@enge.fr>2022-06-13 17:16:54 +0200
commit5dec5f65ec3c7371dde309a101b85b930e423a46 (patch)
treec16e2095924f8cdee69ea36387c1b2523e7171e7 /gnu/packages/patches
parent35124d00873e58eb3fbdf0fc07fff807c9f76aa0 (diff)
downloadguix-patches-5dec5f65ec3c7371dde309a101b85b930e423a46.tar
guix-patches-5dec5f65ec3c7371dde309a101b85b930e423a46.tar.gz
gnu: fplll: Update to 5.4.2.
* gnu/packages/algebra.scm (fplll): Update to 5.4.2. [source]: Remove patch; for unknown reasons the package now compiles without it. * gnu/packages/patches/fplll-std-fenv.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Unregister patch.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r--gnu/packages/patches/fplll-std-fenv.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/gnu/packages/patches/fplll-std-fenv.patch b/gnu/packages/patches/fplll-std-fenv.patch
deleted file mode 100644
index aa2438f0c9..0000000000
--- a/gnu/packages/patches/fplll-std-fenv.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-See https://github.com/fplll/fplll/issues/444
-
---- fplll-5.3.3-checkout.old/fplll/enum/enumerate_base.h 2020-09-23 13:55:27.833769823 +0200
-+++ fplll-5.3.3-checkout/fplll/enum/enumerate_base.h 2020-09-23 13:56:14.313771769 +0200
-@@ -127,10 +127,10 @@
- int rounding_backup;
- void save_rounding()
- {
-- rounding_backup = std::fegetround();
-- std::fesetround(FE_TONEAREST);
-+ rounding_backup = fegetround();
-+ fesetround(FE_TONEAREST);
- }
-- void restore_rounding() { std::fesetround(rounding_backup); }
-+ void restore_rounding() { fesetround(rounding_backup); }
-
- inline bool next_pos_up()
- {