diff options
author | romain <romain@FreeBSD.org> | 2016-08-09 15:13:44 +0800 |
---|---|---|
committer | romain <romain@FreeBSD.org> | 2016-08-09 15:13:44 +0800 |
commit | 46141efe6fafc71cc2ca38f48435585f6040a8f2 (patch) | |
tree | 528342bb2bba90cb08e61df4bebf7f645f2f7b24 /irc | |
parent | 4dc09b9e9784a690b0c3f32a341870738ed4e0b6 (diff) | |
download | freebsd-ports-gnome-46141efe6fafc71cc2ca38f48435585f6040a8f2.tar.gz freebsd-ports-gnome-46141efe6fafc71cc2ca38f48435585f6040a8f2.tar.zst freebsd-ports-gnome-46141efe6fafc71cc2ca38f48435585f6040a8f2.zip |
Fix build with mono 4.4.
Some assemblies have been relocated, so adjust files path to point to the
correct location.
Looks like I forgot to push the update for this port yesterday.
Reported by: pkg-fallout
Diffstat (limited to 'irc')
-rw-r--r-- | irc/smartirc4net/files/patch-configure | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/irc/smartirc4net/files/patch-configure b/irc/smartirc4net/files/patch-configure new file mode 100644 index 000000000000..9ce0a54e731b --- /dev/null +++ b/irc/smartirc4net/files/patch-configure @@ -0,0 +1,13 @@ +--- configure.orig 2016-06-25 15:43:07 UTC ++++ configure +@@ -2742,8 +2742,8 @@ CSC_FLAGS="-debug -define:TRACE,DEBUG -n + { $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; } |