diff options
author | romain <romain@FreeBSD.org> | 2016-08-09 01:50:53 +0800 |
---|---|---|
committer | romain <romain@FreeBSD.org> | 2016-08-09 01:50:53 +0800 |
commit | 5061b5b7986782a49003c2293387344361e8c59c (patch) | |
tree | b2814664e937eb5a1e717daa1ad578d53e1ce287 /misc/podsleuth | |
parent | 2e2e8fed9dea59e0da3870b6cab21162c2cecfb1 (diff) | |
download | freebsd-ports-gnome-5061b5b7986782a49003c2293387344361e8c59c.tar.gz freebsd-ports-gnome-5061b5b7986782a49003c2293387344361e8c59c.tar.zst freebsd-ports-gnome-5061b5b7986782a49003c2293387344361e8c59c.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 'misc/podsleuth')
-rw-r--r-- | misc/podsleuth/files/patch-configure | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/misc/podsleuth/files/patch-configure b/misc/podsleuth/files/patch-configure new file mode 100644 index 000000000000..13273ccb87a5 --- /dev/null +++ b/misc/podsleuth/files/patch-configure @@ -0,0 +1,13 @@ +--- configure.orig 2016-06-25 15:45:17 UTC ++++ configure +@@ -3006,8 +3006,8 @@ $as_echo "$as_me: error: You need to ins + { $as_echo "$as_me:$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:$LINENO: result: found" >&5 + $as_echo "found" >&6; } |