diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2007-05-29 18:33:19 +0000 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2007-05-29 18:33:19 +0000 |
commit | 9b9f11979f81226411170def20c354e26fa1908c (patch) | |
tree | a27b61eb3b11997c21fa20cce9fab57f2209a840 | |
parent | - Update to 3.7-1 (diff) |
Fix mesa-demos build against libGL that doesn't link against a pthread lib.
Diffstat (limited to '')
-rw-r--r-- | graphics/mesa-demos/files/config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/mesa-demos/files/config b/graphics/mesa-demos/files/config index c35ac607c925..1b035a5dc8dd 100644 --- a/graphics/mesa-demos/files/config +++ b/graphics/mesa-demos/files/config @@ -9,7 +9,7 @@ _CC := $(CC) _CXX := $(CXX) _CFLAGS := -fPIC -pedantic -I$(X11BASE)/include -DUSE_XSHM -DHZ=100 $(CFLAGS) \ - -DPTHREADS + -DPTHREADS $(PTHREAD_CFLAGS) _CXXFLAGS := -fPIC -pedantic $(CXXFLAGS) include $(TOP)/configs/default @@ -26,5 +26,5 @@ GLUT_CFLAGS = -fexceptions LIB_DIR = $(X11BASE)/lib -APP_LIB_DEPS = -L$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lXext -lXmu -lXi -lX11 -lm +APP_LIB_DEPS = -L$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lXext -lXmu -lXi -lX11 -lm $(PTHREAD_LIBS) |