diff options
author | romain <romain@FreeBSD.org> | 2016-08-08 17:51:10 +0000 |
---|---|---|
committer | romain <romain@FreeBSD.org> | 2016-08-08 17:51:10 +0000 |
commit | ba879bca85ffbb79b1a0865b40b2e214352e3f5b (patch) | |
tree | a7dc2dd5a8a8d4aa54214090cfe3f9997095b65d | |
parent | 5061b5b7986782a49003c2293387344361e8c59c (diff) | |
download | FreeBSD-ports-ba879bca85ffbb79b1a0865b40b2e214352e3f5b.zip FreeBSD-ports-ba879bca85ffbb79b1a0865b40b2e214352e3f5b.tar.gz |
Fix build with mono 4.4.
Some assemblies have been relocated, so adjust files path to point to the
correct location.
-rw-r--r-- | multimedia/banshee/files/patch-configure | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/multimedia/banshee/files/patch-configure b/multimedia/banshee/files/patch-configure new file mode 100644 index 0000000..15f5c18 --- /dev/null +++ b/multimedia/banshee/files/patch-configure @@ -0,0 +1,16 @@ + +$FreeBSD$ + +--- configure.orig ++++ configure +@@ -15696,8 +15696,8 @@ + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Mono 2.0 GAC for $asm.dll" >&5 + $as_echo_n "checking for Mono 2.0 GAC for $asm.dll... " >&6; } + if test \ +- -e "$($PKG_CONFIG --variable=libdir mono)/mono/2.0/$asm.dll" -o \ +- -e "$($PKG_CONFIG --variable=prefix mono)/lib/mono/2.0/$asm.dll"; \ ++ -e "$($PKG_CONFIG --variable=libdir mono)/mono/2.0-api/$asm.dll" -o \ ++ -e "$($PKG_CONFIG --variable=prefix mono)/lib/mono/2.0-api/$asm.dll"; \ + then \ + { $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5 + $as_echo "found" >&6; } |