Fixes in 1.65.1 Config: * Version macro changes for CUDA. * Update last known MSVC version. * MSVC 14.11 supports structured bindings. Context: * Return a continuation from functions executed by resume_with. Fiber: * Return a continuation from functions executed by resume_with. Smart Pointers: * Fix Visual C++ version checks. * Fix compilation for NVCC with host compiler clang. Stacktrace: * Update build testing file to detail with a MinGW issue. * Change preprocessor file extensions to work with the installation system. * Support FreeBSD and other OSs that do not define _GNU_SOURCE but have _Unwind_Backtrace function. Thread: * Fix bug in boost::condition_variable on Windows
24 lines
753 B
Makefile
24 lines
753 B
Makefile
# $NetBSD: Makefile,v 1.9 2017/09/13 17:34:41 adam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/-/-client-/}
|
|
PKGREVISION= 2
|
|
COMMENT= MySQL 5, a free SQL database (client)
|
|
|
|
CONFLICTS= mysql3-client-[0-9]*
|
|
|
|
.include "Makefile.common"
|
|
|
|
CMAKE_ARGS+= -DWITHOUT_SERVER=ON
|
|
UNWRAP_FILES+= scripts/mysql_config
|
|
INFO_FILES= yes
|
|
INSTALL_DIRS+= client include libmysql man scripts testclients
|
|
|
|
# Replace manual pages which only include other ones with a symbolic link
|
|
# It is for manual compression is activated or mandoc(1) is used.
|
|
post-install:
|
|
.for mf in mysql_client_test_embedded.1 mysqltest_embedded.1
|
|
${RM} -f ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/${mf}
|
|
${LN} -s ${mf:S/_embedded//} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/${mf}
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|