svn commit: r332567 - head/graphics/apvlv
Tijl Coosemans
tijl at FreeBSD.org
Sun Nov 3 19:14:23 UTC 2013
On Sun, 3 Nov 2013 00:36:33 +0000 (UTC) Mark Felder wrote:
> Author: feld
> Date: Sun Nov 3 00:36:33 2013
> New Revision: 332567
> URL: http://svnweb.freebsd.org/changeset/ports/332567
>
> Log:
> Link to pthread directly
>
> PR: ports/182774
> Approved by: swills (mentor, implicit)
>
> Modified:
> head/graphics/apvlv/Makefile
>
> Modified: head/graphics/apvlv/Makefile
> ==============================================================================
> --- head/graphics/apvlv/Makefile Sun Nov 3 00:24:37 2013 (r332566)
> +++ head/graphics/apvlv/Makefile Sun Nov 3 00:36:33 2013 (r332567)
> @@ -3,6 +3,7 @@
>
> PORTNAME= apvlv
> PORTVERSION= 0.1.4
> +PORTREVISION= 1
> CATEGORIES= graphics
> MASTER_SITES= http://cloud.github.com/downloads/naihe2010/apvlv/
> DISTNAME= ${PORTNAME}-${PORTVERSION}-Source
> @@ -21,6 +22,8 @@ CMAKE_ARGS+= -DSYSCONFDIR=${PREFIX}/etc
> -DDOCDIR=${DOCSDIR} \
> -DAPVLV_WITH_UMD=OFF \
> -DAPVLV_WITH_TXT=ON
> +CFLAGS+= ${PTHREAD_CFLAGS}
> +LDFLAGS+= ${PTHREAD_LIBS}
These two variables are deprecated. They were needed with FreeBSD 5
which had 3 threading libraries or so, but now PTHREAD_CFLAGS is
always empty so you can remove that line and PTHREAD_LIBS is always
-pthread.
More information about the svn-ports-all
mailing list