annotate src/of-quaternion-1-cross-fixes.patch @ 5531:eae508c12529

Add build rule for build-octave (bug #49503). * src/build-octave.mk: Add new build rule for build-octave which can be used for cross-building binary packages that depend on Octave as a build tool. * dist-files.mk: Add new file to list. * index.html: Add new package to list. * src/of-communications.mk, src/of-image.mk, src/of-mapping.mk, src/of-optiminterp.mk, src/of-sparsersb.mk, src/of-statistics.mk, src/of-windows.mk: Add optional dependency on build-octave. * configure.ac: Add new configure switch "--disable-system-octave" that is needed to build the build-octave package. * Makefile.in: Add variable "USE_SYSTEM_OCTAVE". Exclude build-octave from the default build tools and build it only if a package explicitly depends on it. Display warning about missing native Octave version only if necessary.
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 08 Sep 2020 23:04:38 +0200
parents 2d8b0a2025e4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3937
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
1 diff -ur quaternion.orig/src/Makefile quaternion/src/Makefile
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
2 --- quaternion.orig/src/Makefile 2015-05-10 07:14:09.000000000 -0400
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
3 +++ quaternion/src/Makefile 2015-05-10 07:15:03.000000000 -0400
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
4 @@ -1,11 +1,13 @@
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
5 +MKOCTFILE ?= mkoctfile
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
6 +
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
7 all: is_real_array.oct
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
8
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
9 # helper
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
10 is_real_array.oct: is_real_array.cc
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
11 - mkoctfile is_real_array.cc
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
12 + $(MKOCTFILE) is_real_array.cc
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
13
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
14 clean:
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
15 rm -rf *.o core octave-core *.oct *~
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
16
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
17 realclean: clean
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
18 - rm -rf *.a
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
19 \ No newline at end of file
2d8b0a2025e4 add of-quaternion-1-cross-fixes.patch missed in c/s 8935178bae18
John Donoghue <john.donoghue@ieee.org>
parents:
diff changeset
20 + rm -rf *.a