Date: Fri, 7 Dec 2018 23:28:11 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r486900 - in head/devel/ticcutils: . files Message-ID: <201812072328.wB7NSBop089985@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Fri Dec 7 23:28:11 2018 New Revision: 486900 URL: https://svnweb.freebsd.org/changeset/ports/486900 Log: devel/ticcutils: Make libboost_regex.so link to the shared library Added: head/devel/ticcutils/files/patch-src_Makefile.am (contents, props changed) Modified: head/devel/ticcutils/Makefile Modified: head/devel/ticcutils/Makefile ============================================================================== --- head/devel/ticcutils/Makefile Fri Dec 7 22:57:28 2018 (r486899) +++ head/devel/ticcutils/Makefile Fri Dec 7 23:28:11 2018 (r486900) @@ -3,6 +3,7 @@ PORTNAME= ticcutils DISTVERSIONPREFIX= v DISTVERSION= 0.20 +PORTREVISION= 1 CATEGORIES= devel textproc MAINTAINER= yuri@FreeBSD.org @@ -29,6 +30,6 @@ TEST_TARGET= check # Workaround for https://github.com/LanguageMachines/ticcutils/issues/18 (also see the patch files/patch-configure.ac) CXXFLAGS+= -DHAVE_BOOST_REGEX -LDFLAGS+= ${LOCALBASE}/lib/libboost_regex.so +LDFLAGS+= -lboost_regex .include <bsd.port.mk> Added: head/devel/ticcutils/files/patch-src_Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ticcutils/files/patch-src_Makefile.am Fri Dec 7 23:28:11 2018 (r486900) @@ -0,0 +1,10 @@ +--- src/Makefile.am.orig 2018-12-07 23:02:14 UTC ++++ src/Makefile.am +@@ -1,5 +1,6 @@ + AM_CPPFLAGS = -I@top_srcdir@/include +-AM_CXXFLAGS = -g -std=c++11 -O3 -W -Wall -pedantic ++AM_CXXFLAGS = -std=c++11 -W -Wall -pedantic ++AM_LDFLAGS = $(LDFLAGS) + + LDADD = libticcutils.la +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812072328.wB7NSBop089985>