diff options
author | Sylvio Cesar Teixeira <sylvio@FreeBSD.org> | 2010-06-29 12:03:07 +0000 |
---|---|---|
committer | Sylvio Cesar Teixeira <sylvio@FreeBSD.org> | 2010-06-29 12:03:07 +0000 |
commit | ad97a8683c13ea449ab6fbebd9eecfd99f587d6b (patch) | |
tree | 7615e33b857e81888a1686bbab3823252f003c55 /math/octave-forge-fenv/files/patch-src_Makefile | |
parent | The octave-forge package is the result of The GNU Octave Repositry Project, w... (diff) |
The octave-forge package is the result of the GNU Octave Repositry project, which is intended to be a central location for custom scripts, funcitons and extensions for GNU Octave, contains the source for all the functions plus build and install scripts.
This is fenv.
On supported architectures, change the rounding mode of the floating point arithmetics (to nearest, up, down, to zero) or change the precision of the test the properties of the floating point arithmetics.
WWW: http://octave.sourceforge.net/
PR: ports/147601
Submitted by: Stephen Montgomery-Smith <stephen@missouri.edu>
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=257153
Diffstat (limited to 'math/octave-forge-fenv/files/patch-src_Makefile')
-rw-r--r-- | math/octave-forge-fenv/files/patch-src_Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/math/octave-forge-fenv/files/patch-src_Makefile b/math/octave-forge-fenv/files/patch-src_Makefile new file mode 100644 index 000000000000..4c9ccd134ed0 --- /dev/null +++ b/math/octave-forge-fenv/files/patch-src_Makefile @@ -0,0 +1,17 @@ +--- Makefile-orig 2010-06-06 16:11:01.000000000 -0500 ++++ Makefile 2010-06-06 16:11:17.000000000 -0500 +@@ -1,13 +1,10 @@ +-include configure.in # This file is automatically generated by +- # ../pre_install.m and sets FENV_OPTS +- + OCT = fe_system_dependent.oct + SRC := $(OCT:.oct=.cc) + + all: $(OCT) + fe_system_dependent: $(OCT) + +-%.oct: %.cc configure.in Makefile ++%.oct: %.cc Makefile + mkoctfile -s $< $(FENV_OPTS) + + |