diff options
author | pav <pav@FreeBSD.org> | 2005-03-21 13:25:56 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-03-21 13:25:56 +0000 |
commit | 0381ac706e2c8c2af9b7f1142d426a33b23d0f04 (patch) | |
tree | 5e23f07968c5865cfebd323da7d21286f503018d /databases/mysql41-server | |
parent | 7ac043690f54f25302a2a25e1ce1502f9e7015db (diff) | |
download | FreeBSD-ports-0381ac706e2c8c2af9b7f1142d426a33b23d0f04.zip FreeBSD-ports-0381ac706e2c8c2af9b7f1142d426a33b23d0f04.tar.gz |
- Add WITH_COLLATION knob to control --with-collation configure argument.
Useful for regional collation support.
PR: ports/78400
Submitted by: Divacky Roman <xdivac02@stud.fit.vutbr.cz>
Approved by: maintainer timeout (17 days)
Diffstat (limited to 'databases/mysql41-server')
-rw-r--r-- | databases/mysql41-server/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/databases/mysql41-server/Makefile b/databases/mysql41-server/Makefile index eef2985..9256a0d 100644 --- a/databases/mysql41-server/Makefile +++ b/databases/mysql41-server/Makefile @@ -61,6 +61,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> |