diff options
author | Romain Tartière <romain@FreeBSD.org> | 2016-08-09 01:51:10 +0800 |
---|---|---|
committer | Romain Tartière <romain@FreeBSD.org> | 2016-08-09 01:51:10 +0800 |
commit | 9965a1b0b299aca302d88429e6505a0a6d4bbd06 (patch) | |
tree | a7dc2dd5a8a8d4aa54214090cfe3f9997095b65d /multimedia | |
parent | fa46b980dd895dd775b229e114e750091fc592e1 (diff) | |
download | freebsd-ports-gnome-9965a1b0b299aca302d88429e6505a0a6d4bbd06.tar.gz freebsd-ports-gnome-9965a1b0b299aca302d88429e6505a0a6d4bbd06.tar.zst freebsd-ports-gnome-9965a1b0b299aca302d88429e6505a0a6d4bbd06.zip |
Fix build with mono 4.4.
Some assemblies have been relocated, so adjust files path to point to the
correct location.
Diffstat (limited to 'multimedia')
-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 000000000000..15f5c182ec93 --- /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; } |