diff options
author | Koop Mast <kwm@FreeBSD.org> | 2015-01-01 23:28:41 +0000 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2015-01-01 23:28:41 +0000 |
commit | 0f662ede741f8e1a4dd30c5283027e3b38aa8567 (patch) | |
tree | e981c737573b297379153d9f7979b0a5c131658a /net-im/farstream | |
parent | f5f737f97e89526a6ae3e88f5bb3b352dd5cb446 (diff) | |
download | ports-0f662ede741f8e1a4dd30c5283027e3b38aa8567.tar.gz ports-0f662ede741f8e1a4dd30c5283027e3b38aa8567.zip |
Fix farsight2 build on arm, by explicitly linking to -lm for sqrt(3)
While here apply the same the same to farstream
PR: 196070
Submitted by: mikael.urankar@gmail.com
Verified by: sbruno@
Notes
Notes:
svn path=/head/; revision=376034
Diffstat (limited to 'net-im/farstream')
-rw-r--r-- | net-im/farstream/files/patch-tests_rtp_Makefile.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-im/farstream/files/patch-tests_rtp_Makefile.in b/net-im/farstream/files/patch-tests_rtp_Makefile.in new file mode 100644 index 000000000000..d05eb8a60832 --- /dev/null +++ b/net-im/farstream/files/patch-tests_rtp_Makefile.in @@ -0,0 +1,11 @@ +--- tests/rtp/Makefile.in 2014-12-17 15:37:13 UTC ++++ tests/rtp/Makefile.in +@@ -80,7 +80,7 @@ am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERB + am__v_lt_0 = --silent + codec_discovery_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ +- $(codec_discovery_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ ++ $(codec_discovery_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -lm \ + -o $@ + DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) + depcomp = $(SHELL) $(top_srcdir)/depcomp |