1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-30 05:40:06 +00:00

Add "-lclucene-shared" to linker flags. This patch is known to fix build

issues with non-base compilers.

http://sourceforge.net/tracker/?func=detail&aid=3461512&group_id=80013&atid=558446

Prodded by:	avg
Feature safe:	yes
This commit is contained in:
Jung-uk Kim 2013-04-16 19:02:54 +00:00
parent eeb6fdad26
commit 7bf75e79aa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=315888

View File

@ -0,0 +1,10 @@
--- src/core/libclucene-core.pc.cmake.orig 2011-03-16 20:21:07.000000000 -0400
+++ src/core/libclucene-core.pc.cmake 2013-04-16 14:52:22.000000000 -0400
@@ -6,6 +6,6 @@
Name: libclucene
Description: CLucene - a C++ search engine, ported from the popular Apache Lucene
Version: @CLUCENE_VERSION_MAJOR@.@CLUCENE_VERSION_MINOR@.@CLUCENE_VERSION_REVISION@.@CLUCENE_VERSION_PATCH@
-Libs: -L${prefix}/@LIB_DESTINATION@/ -lclucene-core
+Libs: -L${prefix}/@LIB_DESTINATION@/ -lclucene-core -lclucene-shared
Cflags: -I${prefix}/include -I${prefix}/include/CLucene/ext
~