diff options
author | Jeremy Messenger <mezz@FreeBSD.org> | 2008-03-28 01:50:20 +0000 |
---|---|---|
committer | Jeremy Messenger <mezz@FreeBSD.org> | 2008-03-28 01:50:20 +0000 |
commit | 01aa5d3c3738157ac5f482617e3d1ef1ec50bfba (patch) | |
tree | 93d68bc0bea20628e308298f854436e5a4c5f9d3 /games/cheech | |
parent | - Update to 0.44 (diff) |
Fix the build with new libsigc++20 2.2.2. I have tested these ports in runtime
and these seem work fine in normal use. I don't test every functions, so let
me know if you have any problem with it.
Reported by: pointyhat via pav
Notes
Notes:
svn path=/head/; revision=209987
Diffstat (limited to '')
-rw-r--r-- | games/cheech/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/games/cheech/Makefile b/games/cheech/Makefile index fff537868800..5edae9aec7ab 100644 --- a/games/cheech/Makefile +++ b/games/cheech/Makefile @@ -36,6 +36,9 @@ post-patch: @${REINPLACE_CMD} -e "s|doc/cheech|share/doc/cheech|g" \ -e "s|: install-cheechdocDATA|:|g" \ ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e 's|connect(SigC::slot|connect(sigc::mem_fun|g ; \ + s|#include <sigc++\/compatibility\.h>||g' \ + ${WRKSRC}/src/*.cc pre-configure: @${LN} -sf ${AUTOMAKE_DIR}/install-sh ${WRKSRC} |