From: Ian Romanick Date: Tue, 31 Jul 2012 21:10:54 +0000 (-0700) Subject: mesa/tests: Don't build glapi tests with shared-glapi X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=52d6df8aa7231c1d4d80a8599af0e2c5d02c7b6c;p=mesa.git mesa/tests: Don't build glapi tests with shared-glapi This fixes 'make check' on with --enable-shared-glapi. This test cannot work in that environment. Signed-off-by: Ian Romanick --- diff --git a/src/mapi/glapi/tests/Makefile.am b/src/mapi/glapi/tests/Makefile.am index 96fc8713bd3..d1d2f03827a 100644 --- a/src/mapi/glapi/tests/Makefile.am +++ b/src/mapi/glapi/tests/Makefile.am @@ -1,3 +1,4 @@ +if !HAVE_SHARED_GLAPI AM_CPPFLAGS = \ -I$(top_builddir)/src/gtest/include \ -I$(top_builddir)/src/mapi \ @@ -13,3 +14,4 @@ glapi_test_LDADD = \ $(top_builddir)/src/mapi/glapi/libglapi.la \ $(top_builddir)/src/gtest/libgtest.la \ -lpthread +endif