diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-03-21 14:08:49 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-03-21 14:08:49 +0000 |
commit | 3ba1f63eea6581c437e42d395165fa10d8863c76 (patch) | |
tree | 3309ad1bf1e461ebdaa533a268281e28c27def95 /databases/mysql50-server/Makefile | |
parent | ac6ca062fc21a9e17e3c5bdd8b55378743bf8af8 (diff) | |
download | ports-3ba1f63eea6581c437e42d395165fa10d8863c76.tar.gz ports-3ba1f63eea6581c437e42d395165fa10d8863c76.zip |
Notes
Diffstat (limited to 'databases/mysql50-server/Makefile')
-rw-r--r-- | databases/mysql50-server/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/databases/mysql50-server/Makefile b/databases/mysql50-server/Makefile index 8a2e14dfae08..a3d67959066a 100644 --- a/databases/mysql50-server/Makefile +++ b/databases/mysql50-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)." |