diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2012-01-18 10:52:56 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2012-01-18 10:52:56 +0000 |
commit | 0dd26a3a8b42d311d671ba416a74c9e7840544de (patch) | |
tree | 7aea0a97de497c50f2ee7b0773a406f9353af736 | |
parent | 8ec88c6141a75cea15eafe0f24f761a991017488 (diff) | |
download | ports-0dd26a3a8b42d311d671ba416a74c9e7840544de.tar.gz ports-0dd26a3a8b42d311d671ba416a74c9e7840544de.zip |
Explicit link against /usr/lib/libncurses.so instead of using -lncurses to
prevent a conflict with devel/ncurses.
PR: 164244
Submitted by: Thomas Zander <thomas.e.zander@googlemail.com> (solution)
Approved by: Thomas Zander <thomas.e.zander@googlemail.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=289404
-rw-r--r-- | multimedia/mencoder/Makefile | 1 | ||||
-rw-r--r-- | multimedia/mplayer/Makefile | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/multimedia/mencoder/Makefile b/multimedia/mencoder/Makefile index e5314889f9ec..2b4e29435435 100644 --- a/multimedia/mencoder/Makefile +++ b/multimedia/mencoder/Makefile @@ -147,6 +147,7 @@ post-patch: s|/dev/cdrom|${DEFAULT_CDROM_DEVICE}|' \ -e 's|/usr/local|${LOCALBASE}|' \ -e 's|-lbz2|/usr/lib/libbz2.so|' \ + -e 's|-lncurses|/usr/lib/libncurses.so|' \ ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} @${FIND} -E ${WRKSRC} -type f \ -iregex ".*(configure|.sh|Makefile)" -print0 | \ diff --git a/multimedia/mplayer/Makefile b/multimedia/mplayer/Makefile index 0ffc75d844b1..97b090a11021 100644 --- a/multimedia/mplayer/Makefile +++ b/multimedia/mplayer/Makefile @@ -246,6 +246,7 @@ post-patch: s|/dev/cdrom|${DEFAULT_CDROM_DEVICE}|' \ -e 's|/usr/local|${LOCALBASE}|' \ -e 's|-lbz2|/usr/lib/libbz2.so|' \ + -e 's|-lncurses|/usr/lib/libncurses.so|' \ ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} @${FIND} -E ${WRKSRC} -type f \ -iregex ".*(configure|.sh|Makefile)" -print0 | \ |