diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2011-03-22 15:34:49 +0000 |
---|---|---|
committer | Arnaud Fontaine <arnau@debian.org> | 2011-03-26 16:50:48 +0900 |
commit | d48d0219e5e2451cd2803976be8a9bb903f2fb12 (patch) | |
tree | e84a7f05b503cf834bef796c0e7e4d1f69a32b32 | |
parent | 9b9d682d42c17727bf2905a35cc93a017af9ee15 (diff) |
Link with -no-undefined
Use -no-undefined to assure libtool that the library has no unresolved
symbols at link time, so that libtool will build a shared library for
platforms require that all symbols are resolved when the library is linked.
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Acked-by: Julien Cristau <jcristau@debian.org>
Reviewed-by: Arnaud Fontaine <arnau@debian.org>
-rw-r--r-- | renderutil/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/renderutil/Makefile.am b/renderutil/Makefile.am index aaf0f48..3bff67a 100644 --- a/renderutil/Makefile.am +++ b/renderutil/Makefile.am @@ -8,6 +8,7 @@ xcbinclude_HEADERS = xcb_renderutil.h libxcb_render_util_la_SOURCES = cache.c util.c glyph.c libxcb_render_util_la_CPPFLAGS = $(XCB_CFLAGS) $(XCB_RENDER_CFLAGS) libxcb_render_util_la_LIBADD = $(XCB_LIBS) $(XCB_RENDER_LIBS) +libxcb_render_util_la_LDFLAGS = -no-undefined pkgconfig_DATA = xcb-renderutil.pc |