Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Feb 2019 22:23:32 -0800 (PST)
From:      "Rodney W. Grimes" <freebsd@pdx.rh.CN85.dnsmgr.net>
To:        Enji Cooper <ngie@freebsd.org>
Cc:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   Re: svn commit: r344420 - in projects/import-googletest-1.8.1: lib/googletest/gmock lib/googletest/gtest share/mk
Message-ID:  <201902210623.x1L6NWY9018774@pdx.rh.CN85.dnsmgr.net>
In-Reply-To: <201902210447.x1L4liIo050377@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
> Author: ngie
> Date: Thu Feb 21 04:47:44 2019
> New Revision: 344420
> URL: https://svnweb.freebsd.org/changeset/base/344420
> 
> Log:
>   Use gmock/gtest headers when PRIVATELIB is defined
>   
>   The move to /usr/include/private prefixed paths seems to require a bit more
>   effort in order to compile programs.
>   
>   Install the headers to /usr/include/private/g{mock,test}/... and automatically
>   include /usr/include/private in GTESTS_CXXFLAGS to make compilation seamless. I
>   will work on the more global problem later with @bdrewery.

Is this also hooked in to a (cd /usr/src/ && make includes) if gtest is enabled?

> 
> Modified:
>   projects/import-googletest-1.8.1/lib/googletest/gmock/Makefile
>   projects/import-googletest-1.8.1/lib/googletest/gtest/Makefile
>   projects/import-googletest-1.8.1/share/mk/googletest.test.inc.mk
> 
> Modified: projects/import-googletest-1.8.1/lib/googletest/gmock/Makefile
> ==============================================================================
> --- projects/import-googletest-1.8.1/lib/googletest/gmock/Makefile	Thu Feb 21 04:13:20 2019	(r344419)
> +++ projects/import-googletest-1.8.1/lib/googletest/gmock/Makefile	Thu Feb 21 04:47:44 2019	(r344420)
> @@ -17,7 +17,7 @@ LDFLAGS+=	-L${.OBJDIR:H}/gtest
>  
>  INCSGROUPS=	MAIN_INCS INTERNAL_INCS INTERNAL_CUSTOM_INCS
>  
> -MAIN_INCSDIR=	${INCLUDEDIR}/gmock
> +MAIN_INCSDIR=	${INCLUDEDIR}${PRIVATELIB:D/private/${LIB}}
>  MAIN_INCS+=	gmock/gmock-matchers.h
>  MAIN_INCS+=	gmock/gmock-more-actions.h
>  MAIN_INCS+=	gmock/gmock-generated-actions.h
> @@ -30,12 +30,12 @@ MAIN_INCS+=	gmock/gmock-spec-builders.h
>  MAIN_INCS+=	gmock/gmock.h
>  MAIN_INCS+=	gmock/gmock-actions.h
>  
> -INTERNAL_INCSDIR=	${INCLUDEDIR}/gmock/internal
> +INTERNAL_INCSDIR=	${MAIN_INCSDIR}/internal
>  INTERNAL_INCS+=		gmock/internal/gmock-port.h
>  INTERNAL_INCS+=		gmock/internal/gmock-internal-utils.h
>  INTERNAL_INCS+=		gmock/internal/gmock-generated-internal-utils.h
>  
> -INTERNAL_CUSTOM_INCSDIR= ${INCLUDEDIR}/gmock/internal/custom
> +INTERNAL_CUSTOM_INCSDIR= ${INTERNAL_INCSDIR}/custom
>  INTERNAL_CUSTOM_INCS+=	gmock/internal/custom/gmock-port.h
>  INTERNAL_CUSTOM_INCS+=	gmock/internal/custom/gmock-matchers.h
>  INTERNAL_CUSTOM_INCS+=	gmock/internal/custom/gmock-generated-actions.h
> 
> Modified: projects/import-googletest-1.8.1/lib/googletest/gtest/Makefile
> ==============================================================================
> --- projects/import-googletest-1.8.1/lib/googletest/gtest/Makefile	Thu Feb 21 04:13:20 2019	(r344419)
> +++ projects/import-googletest-1.8.1/lib/googletest/gtest/Makefile	Thu Feb 21 04:47:44 2019	(r344420)
> @@ -13,7 +13,7 @@ CXXFLAGS+=	-I${GOOGLETEST_SRCROOT}
>  
>  INCSGROUPS=	MAIN_INCS INTERNAL_INCS INTERNAL_CUSTOM_INCS
>  
> -MAIN_INCSDIR=	${INCLUDEDIR}/gtest
> +MAIN_INCSDIR=	${INCLUDEDIR}${PRIVATELIB:D/private/${LIB}}
>  MAIN_INCS+=	gtest/gtest-death-test.h
>  MAIN_INCS+=	gtest/gtest-message.h
>  MAIN_INCS+=	gtest/gtest-param-test.h
> @@ -25,7 +25,7 @@ MAIN_INCS+=	gtest/gtest.h
>  MAIN_INCS+=	gtest/gtest_pred_impl.h
>  MAIN_INCS+=	gtest/gtest_prod.h
>  
> -INTERNAL_INCSDIR=	${INCLUDEDIR}/gtest/internal
> +INTERNAL_INCSDIR=	${MAIN_INCSDIR}/internal
>  INTERNAL_INCS+=	gtest/internal/gtest-death-test-internal.h
>  INTERNAL_INCS+=	gtest/internal/gtest-filepath.h
>  INTERNAL_INCS+=	gtest/internal/gtest-internal.h
> @@ -38,7 +38,7 @@ INTERNAL_INCS+=	gtest/internal/gtest-string.h
>  INTERNAL_INCS+=	gtest/internal/gtest-tuple.h
>  INTERNAL_INCS+=	gtest/internal/gtest-type-util.h
>  
> -INTERNAL_CUSTOM_INCSDIR= ${INCLUDEDIR}/gtest/internal/custom
> +INTERNAL_CUSTOM_INCSDIR= ${INTERNAL_INCSDIR}/custom
>  INTERNAL_CUSTOM_INCS+=	gtest/internal/custom/gtest-port.h
>  INTERNAL_CUSTOM_INCS+=	gtest/internal/custom/gtest-printers.h
>  INTERNAL_CUSTOM_INCS+=	gtest/internal/custom/gtest.h
> 
> Modified: projects/import-googletest-1.8.1/share/mk/googletest.test.inc.mk
> ==============================================================================
> --- projects/import-googletest-1.8.1/share/mk/googletest.test.inc.mk	Thu Feb 21 04:13:20 2019	(r344419)
> +++ projects/import-googletest-1.8.1/share/mk/googletest.test.inc.mk	Thu Feb 21 04:47:44 2019	(r344420)
> @@ -7,3 +7,6 @@ GTESTS_CXXFLAGS+= -DGTESTS_HAS_STREAM_REDIRECTION=1
>  GTESTS_CXXFLAGS+= -DGTESTS_LANG_CXX11=1
>  GTESTS_CXXFLAGS+= -frtti
>  GTESTS_CXXFLAGS+= -std=c++11
> +
> +# XXX: src.libnames.mk should handle adding this directory.
> +GTESTS_CXXFLAGS+= -I${DESTDIR}${INCLUDEDIR}/private
> 
> 

-- 
Rod Grimes                                                 rgrimes@freebsd.org



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902210623.x1L6NWY9018774>