summaryrefslogtreecommitdiff
path: root/databases/mysql60-server
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-03-21 14:08:49 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-03-21 14:08:49 +0000
commit3ba1f63eea6581c437e42d395165fa10d8863c76 (patch)
tree3309ad1bf1e461ebdaa533a268281e28c27def95 /databases/mysql60-server
parent- Tell users about new WITH_COLLATION knob (diff)
- Add new knob to define default server collation
Requested by: ale (maintainer)
Notes
Notes: svn path=/head/; revision=131838
Diffstat (limited to 'databases/mysql60-server')
-rw-r--r--databases/mysql60-server/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/databases/mysql60-server/Makefile b/databases/mysql60-server/Makefile
index 8a2e14dfae08..a3d67959066a 100644
--- a/databases/mysql60-server/Makefile
+++ b/databases/mysql60-server/Makefile
@@ -62,6 +62,9 @@ CONFIGURE_ARGS+=--without-innodb
.if defined(WITH_NDB)
CONFIGURE_ARGS+=--with-ndbcluster
.endif
+.if defined(WITH_COLLATION) && ${WITH_COLLATION} != ""
+CONFIGURE_ARGS+=--with-collation=${WITH_COLLATION}
+.endif
.include <bsd.port.pre.mk>
@@ -131,6 +134,7 @@ pre-fetch:
@${ECHO} ""
@${ECHO} " WITH_CHARSET=charset Define the primary built-in charset (latin1)."
@${ECHO} " WITH_XCHARSET=list Define other built-in charsets (may be 'all')."
+ @${ECHO} " WITH_COLLATION=collate Define default collation (latin1_swedish_ci)."
@${ECHO} " WITH_OPENSSL=yes Enable secure connections."
@${ECHO} " DB_DIR=directory Set alternate directory for database files"
@${ECHO} " (default is /var/db/mysql)."