diff options
author | romain <romain@FreeBSD.org> | 2016-08-09 01:51:26 +0800 |
---|---|---|
committer | romain <romain@FreeBSD.org> | 2016-08-09 01:51:26 +0800 |
commit | 5d7ffd668c13a4a1da7338e7d5da3c500639dbc1 (patch) | |
tree | 6bb9e491c9c9af3de11d88072dd03b2557ad83b1 /net | |
parent | ba879bca85ffbb79b1a0865b40b2e214352e3f5b (diff) | |
download | freebsd-ports-gnome-5d7ffd668c13a4a1da7338e7d5da3c500639dbc1.tar.gz freebsd-ports-gnome-5d7ffd668c13a4a1da7338e7d5da3c500639dbc1.tar.zst freebsd-ports-gnome-5d7ffd668c13a4a1da7338e7d5da3c500639dbc1.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 'net')
-rw-r--r-- | net/mono-zeroconf/files/patch-configure | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net/mono-zeroconf/files/patch-configure b/net/mono-zeroconf/files/patch-configure new file mode 100644 index 000000000000..e56b0a6609b7 --- /dev/null +++ b/net/mono-zeroconf/files/patch-configure @@ -0,0 +1,13 @@ +--- configure.orig 2016-06-25 15:41:52 UTC ++++ configure +@@ -3096,8 +3096,8 @@ fi + { $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; } |