diff options
author | Emil Velikov <[email protected]> | 2014-03-13 02:32:29 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-03-31 12:59:16 +0100 |
commit | 5503c227d98c6030455cc94197d462a066294f37 (patch) | |
tree | d673eda2a1a6a55916eb0d70d0a9550a838e272d /src/egl | |
parent | 6c8d8119caf99fffcfb2f50763267ae0a9ed8738 (diff) |
automake: consistently use -no-undefined
Set the flag for all but the dri targets. They have missing
glapi symbols which are required for the normal operation with
the X server.
Jon, I fear that you'll need to carry the "no-undefined" hunk
locally when building the dri drivers under cygwin.
Cc: Jon TURNEY <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/wayland/wayland-egl/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/egl/wayland/wayland-egl/Makefile.am b/src/egl/wayland/wayland-egl/Makefile.am index c8d01967f08..b8d1634fe56 100644 --- a/src/egl/wayland/wayland-egl/Makefile.am +++ b/src/egl/wayland/wayland-egl/Makefile.am @@ -8,7 +8,9 @@ AM_CFLAGS = $(DEFINES) \ lib_LTLIBRARIES = libwayland-egl.la noinst_HEADERS = wayland-egl-priv.h libwayland_egl_la_SOURCES = wayland-egl.c -libwayland_egl_la_LDFLAGS = -version-info 1 +libwayland_egl_la_LDFLAGS = \ + -no-undefined \ + -version-info 1 TESTS = wayland-egl-symbols-check |