ports/databases/mysql-connector-c++/Makefile
Pietro Cerutti 7c67916075 - Update to 1.1.1
Changes:

  * DatabaseMetaData::getSQLKeywords() updated to match MySQL 5.5. Note
    that C/C++, just like C/JDBC, returns the same list for every
    MySQL database version. (Ulf)

  * Added MySQL_Connection::getLastStatementInfo() which returns back the
    value of the mysql_info() function of libmysql / Connector/C. (Andrey)

  * Added new method ResultSetMetaData::isNumeric() and implemented it in
    all classes that subclass from it. (Andrey)

  * Fixed the bug causing compilation errors in Microsoft Visual Studio 2010 if
    stdint.h was included. See http://bugs.mysql.com/bug.php?id=60307

  * Fixed bug making statement that did not raise any warning to return
    warnings from previously executed statement.

  * Fixed stores(Lower|Mixed)Case(Quoted)Identifiers methods.

  * Built against libmysql 5.5.27 enabling support of authentification plugins
    and IPv6.
2012-08-09 09:24:28 +00:00

28 lines
545 B
Makefile

# New ports collection Makefile for: mysql-connector-c++
# Date created: 25 August 2011
# Whom: gahr
#
# $FreeBSD$
#
PORTNAME= mysql-connector-c++
PORTVERSION= 1.1.1
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_MYSQL}
MASTER_SITE_SUBDIR= Connector-C++
MAINTAINER= gahr@FreeBSD.org
COMMENT= A MySQL database connector for C++
LICENSE= GPLv2
LIB_DEPENDS= boost_regex.4:${PORTSDIR}/devel/boost-libs
USE_MYSQL= 51+
USE_LDCONFIG= yes
USE_CMAKE= yes
CMAKE_OUTSOURCE=yes
PLIST_SUB+= PORTVERSION=${PORTVERSION}
.include <bsd.port.mk>