diff options
author | maho <maho@FreeBSD.org> | 2008-09-02 10:10:57 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2008-09-02 10:10:57 +0800 |
commit | 876352931201a4ea3f8941917a1512d72d8f2c60 (patch) | |
tree | 438354e51c71c06b5a91e7553cbec61a64ab8e4e /math/octave | |
parent | 69a1d42fe462cc033c655ffaf69e6b5cb3880dcc (diff) | |
download | freebsd-ports-gnome-876352931201a4ea3f8941917a1512d72d8f2c60.tar.gz freebsd-ports-gnome-876352931201a4ea3f8941917a1512d72d8f2c60.tar.zst freebsd-ports-gnome-876352931201a4ea3f8941917a1512d72d8f2c60.zip |
Recognize the -pthread flag, and bump port revision.
PR: 126899
Submitted by: Stephen Montgomery-Smith <stephen@math.missouri.edu>
Diffstat (limited to 'math/octave')
-rw-r--r-- | math/octave/Makefile | 2 | ||||
-rw-r--r-- | math/octave/files/patch-mkoctfile.in | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/math/octave/Makefile b/math/octave/Makefile index 7604a5b82791..faa9f9b379c8 100644 --- a/math/octave/Makefile +++ b/math/octave/Makefile @@ -7,7 +7,7 @@ PORTNAME= octave PORTVERSION= 3.0.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= ftp://ftp.octave.org/pub/octave/ \ ftp://ftp.u-aizu.ac.jp/pub/SciEng/numanal/Octave/bleeding-edge/ diff --git a/math/octave/files/patch-mkoctfile.in b/math/octave/files/patch-mkoctfile.in new file mode 100644 index 000000000000..2fec1d78cc2a --- /dev/null +++ b/math/octave/files/patch-mkoctfile.in @@ -0,0 +1,11 @@ +--- mkoctfile.in-orig 2008-08-27 17:46:53.000000000 -0500 ++++ mkoctfile.in 2008-08-27 17:47:45.000000000 -0500 +@@ -278,7 +278,7 @@ + -D*) + defs="$defs $1" + ;; +- -[lLR]* | -Wl,*) ++ -[lLR]* | -pthread | -Wl,*) + ldflags="$ldflags $1" + ;; + -M | --depend) |