diff options
author | xtraeme <xtraeme> | 2004-02-17 05:28:31 +0000 |
---|---|---|
committer | xtraeme <xtraeme> | 2004-02-17 05:28:31 +0000 |
commit | ca6862b85fbe54382d2dd431fc1dc5e98b3cf24a (patch) | |
tree | 1bca0a4743c32fe8fc8cfe0bdc7da54832d7d4c8 | |
parent | fa3c631df722c155c80c9947c09a1fc34dc77f4b (diff) | |
download | pkgsrc-ca6862b85fbe54382d2dd431fc1dc5e98b3cf24a.tar.gz |
Force detection of X11 headers/libraries via -with-x11{inc,lib}dir,
because XFree86 could be installed somewhere (/usr/pkg/X11R6 for
example :-).
-rw-r--r-- | multimedia/mplayer-share/Makefile.common | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/multimedia/mplayer-share/Makefile.common b/multimedia/mplayer-share/Makefile.common index 630c2d4702f..77515cbe43a 100644 --- a/multimedia/mplayer-share/Makefile.common +++ b/multimedia/mplayer-share/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.1.1.1 2004/01/26 12:06:43 jmmv Exp $ +# $NetBSD: Makefile.common,v 1.2 2004/02/17 05:28:31 xtraeme Exp $ # MPLAYER_DIST_VERSION= 1.0pre3 @@ -33,7 +33,8 @@ PTHREAD_OPTS+= require CONFIGURE_ARGS+= --prefix="${PREFIX}" \ --with-extraincdir="${LOCALBASE}/include" \ --with-extralibdir="${LOCALBASE}/lib" \ - --with-extralibdir="${X11BASE}/lib" \ + --with-x11incdir="${X11BASE}/include" \ + --with-x11libdir="${X11BASE}/lib" \ --disable-mpdvdkit \ # The configure script attempts to test-execute compiled programs in /tmp, |