diff options
author | alepulver <alepulver@FreeBSD.org> | 2008-02-04 07:41:47 +0800 |
---|---|---|
committer | alepulver <alepulver@FreeBSD.org> | 2008-02-04 07:41:47 +0800 |
commit | a60063672c0766e25b3f6c3a697d3cffcd56be88 (patch) | |
tree | 0dd2dae302b34a284a25669df50ef1ecac71c9ef /multimedia | |
parent | a36d7da7f5a6936e1c738da42f9bbae6e92e74dd (diff) | |
download | freebsd-ports-gnome-a60063672c0766e25b3f6c3a697d3cffcd56be88.tar.gz freebsd-ports-gnome-a60063672c0766e25b3f6c3a697d3cffcd56be88.tar.zst freebsd-ports-gnome-a60063672c0766e25b3f6c3a697d3cffcd56be88.zip |
- Fix building with new libxine (add ${PTHREAD_LIBS} to LDFLAGS).
- Remove unneeded X11BASE includes/libraries (LOCALBASE ones present).
Reported by: pav
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/toxine/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/toxine/Makefile b/multimedia/toxine/Makefile index 8d4eaca93c73..bd3e4d12da56 100644 --- a/multimedia/toxine/Makefile +++ b/multimedia/toxine/Makefile @@ -19,8 +19,8 @@ LIB_DEPENDS= xine.1:${PORTSDIR}/multimedia/libxine GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -I${X11BASE}/lib" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" OPTIONS= AALIB "Enable aalib support" on \ LIBCACA "Enable libcaca support" on \ |