summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2014-06-13 14:59:37 -0700
committerEric Anholt <eric@anholt.net>2014-06-13 14:59:37 -0700
commitd56f21c494b315306215c4730835a9b291360e9b (patch)
treea6f88ffe782b7505fc11103a81df54cb8bd586af /test
parent27298ee31b9979fb058c3908cc631e8dce9ea674 (diff)
downloadlibepoxy-d56f21c494b315306215c4730835a9b291360e9b.tar.gz
Use the EGL pkgconfig for finding eglplatform.h.
We don't ever explicity link against libEGL, so no need to make use of EGL_LIBS. Fixes #30.
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index ffb330e..f29baca 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -46,7 +46,9 @@ libwgl_common_la_LIBADD = $(EPOXY)
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
-I$(top_builddir)/include \
- $(X11_CFLAGS)
+ $(X11_CFLAGS) \
+ $(EGL_CFLAGS) \
+ $()
AM_CFLAGS = $(CWARNFLAGS)