diff options
author | maho <maho@FreeBSD.org> | 2008-09-02 11:11:08 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2008-09-02 11:11:08 +0800 |
commit | 7b3b8f3ae8e9947889a82968d95008020cba1d87 (patch) | |
tree | 4d628c8ee9102094486c04463526387921868386 /math | |
parent | 876352931201a4ea3f8941917a1512d72d8f2c60 (diff) | |
download | freebsd-ports-gnome-7b3b8f3ae8e9947889a82968d95008020cba1d87.tar.gz freebsd-ports-gnome-7b3b8f3ae8e9947889a82968d95008020cba1d87.tar.zst freebsd-ports-gnome-7b3b8f3ae8e9947889a82968d95008020cba1d87.zip |
Recognize the -pthread flag, and bump port revision.
PR: 126899
Submitted by: Stephen Montgomery-Smith <stephen@math.missouri.edu>
Diffstat (limited to 'math')
-rw-r--r-- | math/octave-devel/Makefile | 1 | ||||
-rw-r--r-- | math/octave-devel/files/patch-mkoctfile.in | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/math/octave-devel/Makefile b/math/octave-devel/Makefile index 8217a7970084..067a518cb301 100644 --- a/math/octave-devel/Makefile +++ b/math/octave-devel/Makefile @@ -7,6 +7,7 @@ PORTNAME= octave PORTVERSION= 3.1.51 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= ftp://ftp.octave.org/pub/octave/bleeding-edge/ \ ftp://ftp.eos.hokudai.ac.jp/pub/GNU/misc/octave/bleeding-edge/\ diff --git a/math/octave-devel/files/patch-mkoctfile.in b/math/octave-devel/files/patch-mkoctfile.in new file mode 100644 index 000000000000..2fec1d78cc2a --- /dev/null +++ b/math/octave-devel/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) |