diff options
author | bms <bms@FreeBSD.org> | 2007-01-10 20:02:08 +0000 |
---|---|---|
committer | bms <bms@FreeBSD.org> | 2007-01-10 20:02:08 +0000 |
commit | 02c6803cf56276e5cdc8e5b63741f00bf7ec7987 (patch) | |
tree | 34b888648ed695634028f6d36c22f410bc21aefe /astro | |
parent | bd71b3576930439676df945fb23b0ade79741caa (diff) | |
download | FreeBSD-ports-02c6803cf56276e5cdc8e5b63741f00bf7ec7987.zip FreeBSD-ports-02c6803cf56276e5cdc8e5b63741f00bf7ec7987.tar.gz |
Mark as requiring gcc 3.4.x; 4.x is not supported by gpstk.
Pass CC and CXX into Jam environment as appropriate.
Diffstat (limited to 'astro')
-rw-r--r-- | astro/gpstk/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/astro/gpstk/Makefile b/astro/gpstk/Makefile index 0f03716..6f90f0c 100644 --- a/astro/gpstk/Makefile +++ b/astro/gpstk/Makefile @@ -17,14 +17,15 @@ COMMENT= Toolkit for developing GPS applications BUILD_DEPENDS= ${LOCALBASE}/bin/jam:${PORTSDIR}/devel/jam -USE_GCC= 3.4+ +USE_GCC= 3.4 USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME} JAM= ${LOCALBASE}/bin/jam JAM_ENV= BINDIR=${PREFIX}/bin \ INCDIR=${PREFIX}/include/$(PORTNAME) \ - LIBDIR=${PREFIX}/lib + LIBDIR=${PREFIX}/lib \ + CC=${CC} C++=${CXX} do-build: cd ${WRKSRC} && ${SETENV} ${JAM_ENV} ${JAM} |