diff options
author | Matt Turner <mattst88@gmail.com> | 2012-09-18 20:22:37 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2012-09-27 10:25:26 -0700 |
commit | 9ed00075d8ea0ffaa675237e32b8611ad3064dbf (patch) | |
tree | fc1f135dfd8d9d32fcf770a46dbc36e1d54936ef /src/mapi/shared-glapi | |
parent | 7da12426f7682ffc44ae40e31d1b5712521fbb70 (diff) |
build: Link libglapi with pthreads
NOTE: This is a candidate for the 9.0 branch.
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=839060
https://bugs.gentoo.org/show_bug.cgi?id=435152
Reviewed-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'src/mapi/shared-glapi')
-rw-r--r-- | src/mapi/shared-glapi/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mapi/shared-glapi/Makefile.am b/src/mapi/shared-glapi/Makefile.am index 8db7688c03..d215c43ad9 100644 --- a/src/mapi/shared-glapi/Makefile.am +++ b/src/mapi/shared-glapi/Makefile.am @@ -6,6 +6,7 @@ include $(top_srcdir)/src/mapi/mapi/sources.mak lib_LTLIBRARIES = libglapi.la libglapi_la_SOURCES = $(MAPI_GLAPI_FILES) +libglapi_la_LIBADD = $(PTHREAD_LIBS) $(SELINUX_LIBS) libglapi_la_LDFLAGS = -no-undefined include $(GLAPI)/gen/glapi_gen.mk @@ -15,6 +16,7 @@ glapi_mapi_tmp.h : $(GLAPI)/gen/gl_and_es_API.xml $(glapi_gen_mapi_deps) BUILT_SOURCES = glapi_mapi_tmp.h CLEANFILES = $(BUILT_SOURCES) +AM_CFLAGS = $(PTHREAD_CFLAGS) AM_CPPFLAGS = \ $(DEFINES) \ -I$(top_srcdir)/include \ |