view src/of-quaternion-1-cross-fixes.patch @ 5579:2734b3818171

Avoid double-free with librsb (bug #58957). * src/librsb.mk: Add work-around to avoid double-free (provided by Michele Martone). * src/mingw-of-sparsersb-1-no-render.patch: Remove patch. * dist-files.mk: Remove file from list.
author Markus Mützel <markus.muetzel@gmx.de>
date Mon, 02 Nov 2020 08:55:18 +0100
parents 2d8b0a2025e4
children
line wrap: on
line source

diff -ur quaternion.orig/src/Makefile quaternion/src/Makefile
--- quaternion.orig/src/Makefile	2015-05-10 07:14:09.000000000 -0400
+++ quaternion/src/Makefile	2015-05-10 07:15:03.000000000 -0400
@@ -1,11 +1,13 @@
+MKOCTFILE ?= mkoctfile
+
 all: is_real_array.oct
 
 # helper
 is_real_array.oct: is_real_array.cc
-	mkoctfile is_real_array.cc
+	$(MKOCTFILE) is_real_array.cc
 
 clean:
 	rm -rf *.o core octave-core *.oct *~
 
 realclean: clean
-	rm -rf *.a
\ No newline at end of file
+	rm -rf *.a