targets/egl-static: fix a linking error

rbug is always linked in and it needs libpthread.
This commit is contained in:
Chia-I Wu 2011-07-13 15:25:46 +08:00
parent 556a47a262
commit 5fe5d236c2
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ egl_CPPFLAGS += \
-I$(TOP)/src/egl/main \
-D_EGL_MAIN=_eglMain
egl_LIBS += $(TOP)/src/gallium/state_trackers/egl/libegl.a
egl_SYS += $(LIBUDEV_LIBS) $(DLOPEN_LIBS) -lEGL -lm
egl_SYS += $(LIBUDEV_LIBS) $(DLOPEN_LIBS) -lEGL -lm -lpthread
# EGL platforms
ifneq ($(findstring x11, $(EGL_PLATFORMS)),)