From 9491538fb9432781d995f57580e4a7c6bb021e17 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Mon, 17 Jun 2019 15:07:42 +0200 Subject: [PATCH] unittest: Add missing Leptonica library for textlineprojection_test It is needed for builds with --enable-shared. Signed-off-by: Stefan Weil --- unittest/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittest/Makefile.am b/unittest/Makefile.am index 9f019650..7123464c 100644 --- a/unittest/Makefile.am +++ b/unittest/Makefile.am @@ -327,7 +327,7 @@ tabvector_test_SOURCES = tabvector_test.cc tabvector_test_LDADD = $(GTEST_LIBS) $(TESS_LIBS) textlineprojection_test_SOURCES = textlineprojection_test.cc -textlineprojection_test_LDADD = $(ABSEIL_LIBS) $(GTEST_LIBS) $(TESS_LIBS) +textlineprojection_test_LDADD = $(ABSEIL_LIBS) $(GTEST_LIBS) $(TESS_LIBS) $(LEPTONICA_LIBS) tfile_test_SOURCES = tfile_test.cc tfile_test_LDADD = $(GTEST_LIBS) $(TESS_LIBS)