Files
ports/databases/fastdb/Makefile
Raphael Kubo da Costa 7f96118e09 Explicitly pass -std=gnu++03 to the compiler.
This fixes the build with GCC 6, which defaults to -std=gnu++14. The port's
code does not work with C++11 or later.

PR:		219275
2017-08-18 12:25:30 +00:00

36 lines
676 B
Makefile

# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
# $FreeBSD$
PORTNAME= fastdb
PORTVERSION= 3.75
PORTREVISION= 2
CATEGORIES= databases
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= Main Memory Relational Database Management System
LICENSE= MIT
WRKSRC= ${WRKDIR}/${PORTNAME}
OPTIONS_DEFINE= DOCS
USES= gmake dos2unix
USE_GCC= any
MAKE_ENV= OSTYPE="${OPSYS}"
MAKEFILE= makefile
USE_LDCONFIG= yes
DOS2UNIX_FILES= ${MAKEFILE}
PORTDOCS= FastDB.htm
# The port does not build with C++11 or later (bug 219275).
USE_CXXSTD= gnu++03
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/FastDB.htm ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>