diff options
author | anholt <anholt@FreeBSD.org> | 2007-06-23 02:21:20 +0800 |
---|---|---|
committer | anholt <anholt@FreeBSD.org> | 2007-06-23 02:21:20 +0800 |
commit | 4ab40209f04a6f3cd6f335fffeeba9978018cd63 (patch) | |
tree | 151c0980e211b3a8ea1733d111ddbe0677f3a961 | |
parent | 8ec7beb2b00fb26d918c40873f0597bbf1ccc480 (diff) | |
download | freebsd-ports-gnome-4ab40209f04a6f3cd6f335fffeeba9978018cd63.tar.gz freebsd-ports-gnome-4ab40209f04a6f3cd6f335fffeeba9978018cd63.tar.zst freebsd-ports-gnome-4ab40209f04a6f3cd6f335fffeeba9978018cd63.zip |
Fix the PTHREAD_LIBS substitution for this version of mesa.
-rw-r--r-- | graphics/libGL/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/libGL/Makefile b/graphics/libGL/Makefile index 5ef80b220e53..9e385e78e322 100644 --- a/graphics/libGL/Makefile +++ b/graphics/libGL/Makefile @@ -7,7 +7,7 @@ PORTNAME?= libGL PORTVERSION?= 6.5.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ ftp://ftp.fu-berlin.de/pub/unix/X11/graphics/Mesa/ @@ -40,7 +40,7 @@ pre-patch: -e 's|g++|${CXX}|g' \ -e 's|CFLAGS = |CFLAGS = ${CFLAGS} |g' \ -e 's|OPT_FLAGS = .*|OPT_FLAGS = ${CFLAGS}|g' \ - -e 's|-pthread|${PTHREAD_LIBS}|g' \ + -e 's|-lpthread|${PTHREAD_LIBS}|g' \ -e 's|SRC_DIRS = .*|SRC_DIRS = glx/x11|g' \ ${WRKSRC}/configs/freebsd-dri @${REINPLACE_CMD} \ |