From 236cfc8ecc5c66288e41bf9b72051a3b18326e1c Mon Sep 17 00:00:00 2001 From: J. Ali Harlow Date: Sat, 23 Aug 2014 11:13:48 +0100 Subject: [PATCH] Remove INTLLIBS from librazor_la_LIBADD. This partially reverts 611c84a3f4b4538a65d186050608c17adbf17770. It's not clear what motivated the initial inclusion of INTLLIBS here since the net effect is only seen in librazor.la and not in razor.pc and librazor.la is not normally packaged. Certainly neither the static nor the dynamic versions of librazor currently use libintl. At best this would cause the linker to search a static libintl for undefined symbols without finding any; at worse it causes a static build of plover using librazor.la to fail if no static version of libintl is installed. --- librazor/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/librazor/Makefile.am b/librazor/Makefile.am index 28c0d26..9531cac 100644 --- a/librazor/Makefile.am +++ b/librazor/Makefile.am @@ -46,7 +46,7 @@ if HAVE_LUA endif librazor_la_LIBADD = $(ZLIB_LIBS) types/libtypes.la $(LUA_LIBS) \ - ../gl/libgnu.la $(INTLLIBS) $(EXTRA_LIBS) + ../gl/libgnu.la $(EXTRA_LIBS) librazor_la_LDFLAGS = -no-undefined \ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -- 1.7.1