diff options
author | tron <tron@pkgsrc.org> | 2003-10-26 14:01:26 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2003-10-26 14:01:26 +0000 |
commit | eae787216a32dadc0813777057c496727c4a5013 (patch) | |
tree | 51f6852c56acce7fcc3df501a4c36ab1e2562f65 | |
parent | 3e77dcd5d63764f7d7f565d2ea9f87d04baca696 (diff) | |
download | pkgsrc-eae787216a32dadc0813777057c496727c4a5013.tar.gz |
Disable GCC version check. While it was added to reject GCC 2.96 (which
was never used in "pkgsrc") it now also reject NetBSD-current's
GCC 3.3.2-nb1.
-rw-r--r-- | graphics/gmplayer/Makefile | 7 | ||||
-rw-r--r-- | graphics/mplayer-share/Makefile.common | 13 |
2 files changed, 10 insertions, 10 deletions
diff --git a/graphics/gmplayer/Makefile b/graphics/gmplayer/Makefile index d7db270cf6c..9b6495d80ef 100644 --- a/graphics/gmplayer/Makefile +++ b/graphics/gmplayer/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2003/09/25 11:23:00 tron Exp $ +# $NetBSD: Makefile,v 1.28 2003/10/26 14:01:26 tron Exp $ PKGNAME= gmplayer-${MPLAYER_PKG_VERSION} PKGREVISION= 2 @@ -41,9 +41,8 @@ DISTFILES+= ${DISTNAME}${EXTRACT_SUFX} DISTFILES+= ${SKINS} USE_BUILDLINK2= # defined -CONFIGURE_ARGS+= --enable-gui -CONFIGURE_ARGS+= --disable-mencoder -CONFIGURE_ARGS+= --confdir=${PREFIX}/share/mplayer +CONFIGURE_ARGS+= --enable-gui --disable-gcc-checking \ + --disable-mencoder --confdir=${PREFIX}/share/mplayer do-install: ${INSTALL_PROGRAM} ${WRKSRC}/mplayer ${PREFIX}/bin/gmplayer diff --git a/graphics/mplayer-share/Makefile.common b/graphics/mplayer-share/Makefile.common index dbc360755bd..9d7ead07993 100644 --- a/graphics/mplayer-share/Makefile.common +++ b/graphics/mplayer-share/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.42 2003/10/18 11:54:33 grant Exp $ +# $NetBSD: Makefile.common,v 1.43 2003/10/26 14:04:41 tron Exp $ # MPLAYER_DIST_VERSION= 1.0pre1 @@ -32,11 +32,12 @@ HAS_CONFIGURE= YES PTHREAD_OPTS+= require -CONFIGURE_ARGS+= --prefix="${PREFIX}" -CONFIGURE_ARGS+= --with-extraincdir="${LOCALBASE}/include" -CONFIGURE_ARGS+= --with-extralibdir="${LOCALBASE}/lib" -CONFIGURE_ARGS+= --with-extralibdir="${X11BASE}/lib" -CONFIGURE_ARGS+= --disable-mpdvdkit +CONFIGURE_ARGS+= --prefix="${PREFIX}" \ + --with-extraincdir="${LOCALBASE}/include" \ + --with-extralibdir="${LOCALBASE}/lib" \ + --with-extralibdir="${X11BASE}/lib" \ + --disable-mpdvdkit \ + --disable-gcc-checking \ # The configure script attempts to test-execute compiled programs in /tmp, # but that directory may be mounted as noexec; work this around by setting |