diff options
author | Dirk Froemberg <dirk@FreeBSD.org> | 2001-01-07 14:51:48 +0000 |
---|---|---|
committer | Dirk Froemberg <dirk@FreeBSD.org> | 2001-01-07 14:51:48 +0000 |
commit | 4422c35a758ede4eafe9a2054e6e79952410210e (patch) | |
tree | f1165a0ce600bdb55b1b1a0e2138c36699660155 /databases/mysql51-server | |
parent | 1) Add audio/lame as a LIB_DEPENDS (diff) |
Add "-felide-constructors -fno-exceptions -fno-rtti" to CXXFLAGS
to work around a problem causing mysqld to crash under heavy load
and multiple connections at the same time.
PORTREVISION bumped.
Notes
Notes:
svn path=/head/; revision=36886
Diffstat (limited to 'databases/mysql51-server')
-rw-r--r-- | databases/mysql51-server/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/databases/mysql51-server/Makefile b/databases/mysql51-server/Makefile index b952e987c71c..3eacfb2ad9e6 100644 --- a/databases/mysql51-server/Makefile +++ b/databases/mysql51-server/Makefile @@ -7,6 +7,7 @@ PORTNAME?= ${MASTERPORTNAME} PORTVERSION= 3.23.30 +PORTREVISION?= 1 CATEGORIES= databases MASTER_SITES= http://www.wipol.uni-bonn.de/MySQL/Downloads/MySQL-3.23/ \ http://www.mysql.net/Downloads/MySQL-3.23/ \ @@ -37,6 +38,9 @@ CONFIGURE_ENV+= PERL=${PERL} \ PERL5=${PERL} \ INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ CONFIGURE_ARGS="${CONFIGURE_ARGS}" +# without including these flags mysqld may crash under heavy load +# and multiple connections at the same time +CXXFLAGS= ${CFLAGS} -felide-constructors -fno-exceptions -fno-rtti # MySQL-Server part .if !defined(CLIENT_ONLY) |