diff options
author | Dirk Froemberg <dirk@FreeBSD.org> | 2001-12-19 20:31:08 +0000 |
---|---|---|
committer | Dirk Froemberg <dirk@FreeBSD.org> | 2001-12-19 20:31:08 +0000 |
commit | 40118ebaa1bd541d5a3a1c64150d9f9690cc47f2 (patch) | |
tree | 3e056ee9bdb735e79e9657403a8e26c1111847ea /databases/mysql51-server/Makefile | |
parent | Add p5-Class-ObjectTemplate-DB 0.23, an optimized template builder (diff) |
Add support for InnoDB tables.
This will emit a warning on startup and will be disabled if not
configured properly.
See http://www.mysql.com/doc/I/n/InnoDB.html for details.
Diffstat (limited to '')
-rw-r--r-- | databases/mysql51-server/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/mysql51-server/Makefile b/databases/mysql51-server/Makefile index accf7d08e176..aa0a2dc6885c 100644 --- a/databases/mysql51-server/Makefile +++ b/databases/mysql51-server/Makefile @@ -7,7 +7,7 @@ PORTNAME?= ${MASTERPORTNAME} PORTVERSION= 3.23.46 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://www.kernelnotes.de/MySQL/Downloads/MySQL-3.23/ \ @@ -35,7 +35,7 @@ CONFIGURE_ARGS= --localstatedir=${DB_DIR} \ --with-comment='FreeBSD port: ${PKGNAME}' .if ${MACHINE_ARCH} == "i386" -CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db +CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db --with-innodb .endif .if defined(WITH_CHARSET) && ${WITH_CHARSET} != "" CONFIGURE_ARGS+=--with-charset=${WITH_CHARSET} |