diff options
author | Jonathan Gray <[email protected]> | 2014-04-03 15:46:01 +1100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-04-05 13:30:27 +0100 |
commit | 11623be934f8573910484de2a5fb50c95f0a1d44 (patch) | |
tree | 2e9ca8fde1180e0e019779fb679dffdf0f3902b6 /src/mapi/es2api | |
parent | e4bd00c1c66ddd574499dcda38519686f9f0a27a (diff) |
automake: don't enable -Wl,--no-undefined on OpenBSD
OpenBSD does not have DT_NEEDED entries for libc by design,
over concerns how the symbols would be referenced after
changing the major version of the library.
So avoid -no-undefined checks on OpenBSD as they will fail.
v2: don't include the -no-undefined libtool option in the variable
and change -Wl,--no-undefined references in Automake.inc as well.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=76856
Signed-off-by: Jonathan Gray <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mapi/es2api')
-rw-r--r-- | src/mapi/es2api/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/es2api/Makefile.am b/src/mapi/es2api/Makefile.am index c9dd1e0a269..337f9021989 100644 --- a/src/mapi/es2api/Makefile.am +++ b/src/mapi/es2api/Makefile.am @@ -53,7 +53,7 @@ libGLESv2_la_LDFLAGS = \ -no-undefined \ -version-number 2 \ $(GC_SECTIONS) \ - -Wl,--no-undefined + $(LD_NO_UNDEFINED) if HAVE_SHARED_GLAPI libGLESv2_la_LIBADD += ../shared-glapi/libglapi.la |