diff options
author | alane <alane@FreeBSD.org> | 2002-12-08 00:22:57 +0000 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2002-12-08 00:22:57 +0000 |
commit | 8eca87d589e142e3798a6fccbe27a8a1d3d9f082 (patch) | |
tree | 77f3891c65fce67f35ac8461530e2888f66d616f /audio/ruby-xmms/files | |
parent | 2f4517e2872d658b39e7acba9762c9fefe535396 (diff) | |
download | FreeBSD-ports-8eca87d589e142e3798a6fccbe27a8a1d3d9f082.zip FreeBSD-ports-8eca87d589e142e3798a6fccbe27a8a1d3d9f082.tar.gz |
Patch pthread options into flags so library will build.
PR: 46075
Approved by: kris
Diffstat (limited to 'audio/ruby-xmms/files')
-rw-r--r-- | audio/ruby-xmms/files/patch-extconf.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/audio/ruby-xmms/files/patch-extconf.rb b/audio/ruby-xmms/files/patch-extconf.rb new file mode 100644 index 0000000..85e3293 --- /dev/null +++ b/audio/ruby-xmms/files/patch-extconf.rb @@ -0,0 +1,13 @@ +--- extconf.rb~ Sun May 5 03:16:11 2002 ++++ extconf.rb Sat Dec 7 09:30:02 2002 +@@ -2,8 +2,8 @@ + + xmms_config = with_config("xmms-config", "xmms-config") + +-$CFLAGS << ' ' << `#{xmms_config} --cflags`.chomp +-$LDFLAGS << ' ' << `#{xmms_config} --libs`.chomp ++$CFLAGS << ' ' << ENV["CFLAGS"] << ' ' << `#{xmms_config} --cflags`.chomp ++$LDFLAGS << ' ' << ENV["LDFLAGS"] << ' ' << `#{xmms_config} --libs`.chomp + + have_library("xmms", "xmms_remote_get_version") and + create_makefile("xmms") |