summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2010-09-15 17:56:52 +0800
committerChia-I Wu <olv@lunarg.com>2010-09-16 12:50:08 +0800
commit340e063525831d817df7f48fd34f1a00fd2720d5 (patch)
tree3b490ae990e2d65d63ab130028a7a9c7087565fd
parent9c0eb872a2b205043128e5bcbde06b5e18e209cd (diff)
progs/egl: Link xeglthreads to -lpthread.
-rw-r--r--progs/egl/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/egl/Makefile b/progs/egl/Makefile
index fe490c2f8ea..c74f474a899 100644
--- a/progs/egl/Makefile
+++ b/progs/egl/Makefile
@@ -60,7 +60,7 @@ xeglgears: xeglgears.o $(HEADERS) $(LIB_DEP)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS) -lm $(X11_LIBS)
xeglthreads: xeglthreads.o $(HEADERS) $(LIB_DEP)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS) -lm $(X11_LIBS)
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS) -lm -lpthread $(X11_LIBS)
xegl_tri: xegl_tri.o $(HEADERS) $(LIB_DEP)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LIBS) -lm $(X11_LIBS)