diff options
author | wiz <wiz@pkgsrc.org> | 2002-05-07 22:08:03 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2002-05-07 22:08:03 +0000 |
commit | dfb7b4862b64190d9e8748ac3e9331431b88c703 (patch) | |
tree | 440b43430df68bb0915657cf9108e84b419e8807 /graphics/mplayer | |
parent | cacb8486892b160b6c6a07f22a854282f01a4472 (diff) | |
download | pkgsrc-dfb7b4862b64190d9e8748ac3e9331431b88c703.tar.gz |
Remove as version check; has bad interactions if you have binutils installed
before trying to make mplayer, but not a gcc that's new enough in the base
system.
Diffstat (limited to 'graphics/mplayer')
-rw-r--r-- | graphics/mplayer/Makefile.common | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/graphics/mplayer/Makefile.common b/graphics/mplayer/Makefile.common index 8158ae8b83d..73ed29d9a73 100644 --- a/graphics/mplayer/Makefile.common +++ b/graphics/mplayer/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.10 2002/05/07 22:02:05 wiz Exp $ +# $NetBSD: Makefile.common,v 1.11 2002/05/07 22:08:03 wiz Exp $ MPLAYER_DIST_VERSION= 0.90pre3 MPLAYER_PKG_VERSION= ${MPLAYER_DIST_VERSION:S/pre/rc/} @@ -39,15 +39,5 @@ CONFIGURE_ARGS+= --disable-mpdvdkit # TMPDIR to ${WRKDIR} CONFIGURE_ENV+= TMPDIR=${WRKDIR} -.include "../../mk/bsd.prefs.mk" - -# The package needs GNU "as" 2.11 or newer to build. -# -AS_VERSION!= ${AS} --version | ${AWK} 'NR==1 {print $$3}' -.if ${AS_VERSION:M2.1[1-9]*} == "" -CONFIGURE_ARGS+= --as="${LOCALBASE}/${MACHINE_GNU_PLATFORM}/bin/as" -CONFIGURE_ENV+= GCC_EXEC_PREFIX="${LOCALBASE}/${MACHINE_GNU_PLATFORM}/bin/" -MAKE_ENV+= GCC_EXEC_PREFIX="${LOCALBASE}/${MACHINE_GNU_PLATFORM}/bin/" .include "../../devel/binutils/buildlink.mk" .include "../../lang/gcc/Makefile.gcc" -.endif |