summaryrefslogtreecommitdiff
path: root/databases/mysql57-server (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* databases/mysq57-{client, server}: Update to latest release 5.7.31Jochen Neumeister2020-07-132-5/+4
| | | | | | | | | | | | Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-31.html Submitted by: fluffy MFH: 2020Q3 Security: 0ed71663-c369-11ea-b53c-d4c9ef517024 Sponsored by: Netzkommune GmbH Notes: svn path=/head/; revision=542151
* Bump PORTREVISION for devel/protobuf shlib changeSunpoet Po-Chuan Hsieh2020-06-031-1/+1
| | | | Notes: svn path=/head/; revision=537830
* In file included from ↵Jochen Neumeister2020-05-045-1/+70
| | | | | | | | | | | | | | | | /usr/obj/usr/ports/databases/mysql57-client/work/mysql-5.7.30/vio/viosslfactories.c:29: /usr/obj/usr/ports/databases/mysql57-client/work/mysql-5.7.30/include/my_openssl.h:55:30: error: use of undeclared identifier 'OPENSSL_INIT_NO_ATEXIT' return OPENSSL_init_crypto(OPENSSL_INIT_NO_ATEXIT, NULL); This fix a problem with libressl PR: 246070 MFH: 2020Q2 Sponsored by: Netzkommune GmbH Notes: svn path=/head/; revision=533909
* databases/mysq56-{client, server}: Update to latest release 5.7.30Jochen Neumeister2020-04-305-42/+11
| | | | | | | | | | | | | | | | | | | | | | | | | Bugs Fixed: - InnoDB: The row_upd_clust_rec_by_insert function, which marks a clustered index record as deleted and inserts an updated version of the record into the clustered index, passed an incorrect n_ext value (the total number of external fields) to lower level functions, causing an assertion failure. - InnoDB: An operation performed with the innodb_buffer_pool_evict debug variable set to uncompressed caused an assertion failure. - InnoDB: An add column operation caused an assertion failure. The failure was due to a dangling pointer. - nnoDB: Updating certain InnoDB system variables that take string values raised invalid read errors during Valgrind testing. - InnoDB: An insert statement on a table with a spatial index raised a record type mismatch assertion due to a tuple corruption. - InnoDB: A function that calculates undo log record size could calculate an incorrect length value in the case of a corrupted undo log record, resulting in a malloc failure. Assertion code was added to detect incorrect calculations. - Replication: While an SQL statement was in the process of being rewritten for the binary log so that sensitive information did not appear in plain text, if a SHOW PROCESSLIST statement was used to inspect the query, the query could become corrupted when it was written to the binary log, causing replication to stop. The process of rewriting the query is now kept private, and the query thread is updated only when rewriting is complete. - Replication: When a GRANT or REVOKE statement is only partially executed, an incident event is logged in the binary log, which makes the replication slave's applier thread stop so that the slave can be reconciled manually with the master. Previously, if a failed GRANT or REVOKE statement was the first statement executed in the session, no GTID was applied to the incident event (because the cache manager did not yet exist for the session), causing an error on the replication slave. Also, no incident event was logged in the situation where a GRANT statement created a user but then failed because the privileges had been specified incorrectly, again causing an error on the replication slave. Both these issues have now been fixed. - Replication: When a replication slave has a generated column that the master does not have in that table, with a secondary index on the generated column, the generated expression should be evaluated and the value stored by the storage engine in the secondary index. When row-based binary logging is in use, the replication slave assigns default values to any fields that are not in the master's definition of the table. In the case of a generated column, which does not have a default value, the slave was previously assigning a null or a zero value to the column. This value was then stored by the storage engine in the secondary index, causing both the table and the index to become corrupted. To fix this issue, generated columns in a table on a replication slave are now re-evaluated before the values are sent to the storage engine. - Replication: In the event of an unplanned disconnection of a replication slave from the master, the reference to the master's dump thread might not be removed from the list of registered slaves, in which case statements that accessed the list of slaves would fail. The issue has now been fixed. - Replication: With the settings binlog_format=MIXED, tx_isolation=READ-COMMITTED, and binlog_row_image=FULL, an INSERT ... SELECT query involving a transactional storage engine omitted any columns with a null value from the row image written to the binary log. This happened because when processing INSERT ... SELECT statements, the columns were marked for inserts before the binary logging format was selected. The issue has now been fixed. Full Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-30.html MFH: 2020Q2 Security: 21d59ea3-8559-11ea-a5e2-d4c9ef517024 (MySQL - Server) Security: 622b5c47-855b-11ea-a5e2-d4c9ef517024 (MySQL - Client) Sponsored by: Netzkommune GmbH Notes: svn path=/head/; revision=533416
* Some manpages require groff, for example mysqladminJochen Neumeister2020-03-011-1/+1
| | | | | | | | | PR: 241145 Reported by: Robert Schulze <rs@bytecamp.net> Sponsored by: Netzkommune GmbH Notes: svn path=/head/; revision=527548
* Take MaintainershipJochen Neumeister2020-01-241-1/+1
| | | | | | | Approved by: mmokhi (maintainer via private Mail) Notes: svn path=/head/; revision=523992
* Bump PORTREVISION for devel/protobuf shlib changeSunpoet Po-Chuan Hsieh2020-01-221-1/+1
| | | | Notes: svn path=/head/; revision=523788
* databases/mysq56-{client, server}: Update to latest release 5.7.29Jochen Neumeister2020-01-163-15/+17
| | | | | | | | | | | | | | | | | | | Bugs Fixed: - InnoDB: os_file_get_parent_dir warnings were encountered when compiling MySQL with GCC 9.2.0. - InnoDB: An internal function (btr_push_update_extern_fields()) used to fetch newly added externally stored fields and update them during a pessimistic update or when going back to a previous version of a record was no longer required. Newly added externally stored fields are updated by a different function. Also, the method used to determine the number of externally stored fields was corrected. - InnoDB: A comparison function found two records to be equal when attempting to merge non-leaf pages of a spatial index. The function was unable to handle this unexpected condition, which resulted in a long semaphore wait and an eventual assertion failure. - Replication: A memory leak could occur when a failed replication group member tried to rejoin a minority group and was disallowed from doing so. - Docker packages were missing the LDAP authentication plugins. More Infos: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-29.html Approved by: mmokhi (maintainer, implicit) MFH: 2020Q1 Security: a6cf65ad-37d2-11ea-a1c7-b499baebfeaf Sponsored by: Netzkommune GmbH Notes: svn path=/head/; revision=523239
* Get rid of useless and unfilled ↵Jochen Neumeister2019-12-103-2/+10
| | | | | | | | | | | | | | libdata/pkgconfig/LIBMYSQL_OS_OUTPUT_NAME-NOTFOUND.pc for server bundle, right .pc file is already installed by client package PR: 242488 Reported by: fluffy Approved by: mmokhi (maintainer, implicit) Sponsored by: Netzkommune GmbH Notes: svn path=/head/; revision=519655
* /ram/usr/ports/databases/mysql57-client/work/mysql-5.7.28/vio/viosslfactories.cJochen Neumeister2019-12-062-10/+22
| | | | | | | | | | | | | | /ram/usr/ports/databases/mysql57-client/work/mysql-5.7.28/vio/viosslfactories.c:505:27: error: use of undeclared identifier 'SSL_OP_NO_TLSv1_3' | SSL_OP_NO_TLSv1_3 This fix a problem with libressl PR: 242474 Approved by: mmokhi (maintainer, implicit) Sponsored by: Netzkommune GmbH Notes: svn path=/head/; revision=519158
* Update to 5.7.28Jochen Neumeister2019-12-055-30/+28
| | | | | | | | | | | Changelog: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-28.html PR: 241920 Approved by: mmokhi (maintainer, implicit) Sponsored by: Netzkommune GmbH Notes: svn path=/head/; revision=519098
* Drop the ipv6 virtual category for d* category as it is not relevant anymoreBaptiste Daroussin2019-10-091-1/+1
| | | | Notes: svn path=/head/; revision=514130
* Convert to UCL & cleanup pkg-message (categories d)Mathieu Arnold2019-08-131-7/+12
| | | | Notes: svn path=/head/; revision=508835
* databases/mysq56-{client, server}: Update to latest release 5.7.27Mahdi Mokhtari2019-08-053-13/+13
| | | | | | | | | | | | | | | This update includes security fixes on issues that are mentioned on upstream critical patch report. Further info: https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html#AppendixMSQL PR: 239271 Submitted by: Greg Veldman <freebsd@gregv.net> Reported by: Markus Kohlmeyer <rootservice@gmail.com> Sponsored by: Platform.sh Notes: svn path=/head/; revision=508220
* devel/libevent2: update to 2.1.11Jan Beich2019-08-021-1/+1
| | | | | | | | | | | | | Changes: https://github.com/libevent/libevent/releases/tag/release-2.1.11-stable ABI: https://abi-laboratory.pro/tracker/timeline/libevent/ PR: 239599 Reported by: GitHub (watch releases) Approved by: zeising (maintainer) MFH: 2019Q3 (maybe security, partially restores 2.1.8 ABI) Differential Revision: https://reviews.freebsd.org/D21133 Notes: svn path=/head/; revision=507877
* Bump PORTREVISION for devel/protobuf shlib changeSunpoet Po-Chuan Hsieh2019-07-311-1/+1
| | | | Notes: svn path=/head/; revision=507719
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* Update devel/protobuf to 3.8.0Sunpoet Po-Chuan Hsieh2019-07-052-1/+11
| | | | | | | | | | | - Bump PORTREVISION of dependent ports for shlib change Changes: https://github.com/protocolbuffers/protobuf/releases PR: 238808 Exp-run by: antoine Notes: svn path=/head/; revision=505909
* databases/mysql57-{client, server}: Update to latest release 5.7.26Mahdi Mokhtari2019-04-285-28/+29
| | | | | | | | | | | | | | | | | | | | | | | This update includes: Bugfix: - InnoDB: Optimized internal temporary tables did not support in-place UPDATE operations - InnoDB: A function called by a CREATE TABLE thread attempted access after free() - InnoDB: The INDEX_LENGTH value in INFORMATION_SCHEMA.TABLES was not updated when adding an index - The authentication_ldap_simple plugin could enforce authentication incorrectly More info: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-26.html Security Fix: CVE-2019-2632, CVE-2019-1559, CVE-2018-3123, and other fixes. More info: https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html#AppendixMSQL PR: 237399 Reported by: Brent Busby <brent@jfi.uchicago.edu> Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=500373
* Update devel/protobuf to 3.7.1Sunpoet Po-Chuan Hsieh2019-03-311-1/+1
| | | | | | | | | | | - Bump PORTREVISION of dependent ports for shlib change Changes: https://github.com/protocolbuffers/protobuf/releases PR: 236157 Exp-run by: antoine Notes: svn path=/head/; revision=497411
* Similar to other SQL ports, add -fpermissive when compiling using GCCMark Linimon2019-02-211-0/+4
| | | | | | | | | | | to fix compilation. PR: 235690 Submitted by: Piotr Kubaj Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=493486
* databases/mysql57-{client, server}: Update to latest release 5.7.25Mahdi Mokhtari2019-01-212-5/+5
| | | | | | | | | | | | | | | | | | | | | | | This update (released on Jan 21st) includes: Deprecation: -Tools resolveip and resolve_stack_dump utilities are now deprecated. (Will be removed on MySQL8.0). Bugfix: -Fix a memory leak caused by a dangling pointer. (Bug #28693568) -Fix mishandling of SIGHUP by server could result in a server exit. (Bug #27966483, Bug #90742). -Correct potential incorrect out-of-memory checks performed by parser. (Bug #25633994). More info from upstream: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-25.html PR: 234983 Reported by: Markus Kohlmeyer < rootservice@gmail.com > Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=490897
* databases/mysql57-server: Fix build for i386Mahdi Mokhtari2018-12-262-1/+32
| | | | | | | | | | | | | Make MySQL build-script assume that FreeBSD's Clang (on i386) doesn't have "atomic_*" functions builtin implemented. This is added to cmake/os/FreeBSD.cmake to make the merge for upstream easier. PR: 229605 Reported by: gbromov@gmail.com Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=488374
* Change cmake default behaviour to outsource.Tobias C. Berner2018-12-251-1/+1
| | | | | | | | | | | | | | Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine Notes: svn path=/head/; revision=488341
* - Update WWWDmitry Marakasov2018-12-141-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=487415
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* Update devel/protobuf to 3.6.1Sunpoet Po-Chuan Hsieh2018-12-031-1/+2
| | | | | | | | | | | - Bump PORTREVISION of dependent ports for shlib change Changes: https://github.com/protocolbuffers/protobuf/releases PR: 231008 Exp-run by: antoine Notes: svn path=/head/; revision=486531
* databases/mysql57-{client, server}: Fix inconsistencies on texinfo and man filesMahdi Mokhtari2018-11-251-2/+2
| | | | | | | | | This is port of r485867 from mysql56-{client, server} Differential Revision: The FreeBSD Foundation Notes: svn path=/head/; revision=485868
* databases/mysql57-{client, server}: Update to 5.7.24Mahdi Mokhtari2018-10-284-22/+19
| | | | | | | | | | | | | | | | | Delete merged-to-upstream FreeBSD patches, edit half-merged ones. Upstream bugfixes: Regression of Bug #27753193 (segfault on ALTER TABLE adding primary key, InnoDB) Query interruption during a lock wait caused an error: Bug #28068293 Raised assertion during an OPTIMIZE TABLE operation for InnoDB: Bug #27753193 More info on update: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-24.html PR: 232685 Reported by: Markus Kohlmeyer <rootservice@gmail.com> Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=483359
* mysql57-server: Fix build with LibreSSL 2.7Mahdi Mokhtari2018-08-112-1/+12
| | | | | | | | | | PR: 230527 Submitted by: Markus Kohlmeyer <rootservice@gmail.com> Reported by: Markus Kohlmeyer <rootservice@gmail.com> Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=476934
* mysql57-{client, server}: Update ports to 5.7.23Mahdi Mokhtari2018-08-102-5/+5
| | | | | | | | | | | | | | | This update includes Oracle Critical Patch Advisory published on July 2018 More info: http://www.oracle.com/technetwork/security-advisory/cpujul2018-4258247.html#AppendixMSQL PR: 229860 Submitted by: Dani <i.dani@outlook.com< Reported by: Markus Kohlmeyer <rootservice@gmail.com> Reviewed by: brnrd , koobs Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=476852
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-1/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* Revert r473259 and r473260 which are committed by accidentSunpoet Po-Chuan Hsieh2018-06-241-1/+1
| | | | | | | | - Bump PORTEPOCH for protobuf and py-protobuf - Bump PORTREVISION for dependent ports Notes: svn path=/head/; revision=473276
* Update to 3.6.0Sunpoet Po-Chuan Hsieh2018-06-241-1/+1
| | | | | | | Changes: https://github.com/google/protobuf/releases Notes: svn path=/head/; revision=473259
* mysql57-{client, server}: Update port to 5.7.22Mahdi Mokhtari2018-04-203-6/+5
| | | | | | | | | | | | | | | This update includes fixes for multiple CVEs including: CVE-2018-2755 in replication component, MySQL protocol CVE-2018-2805 in GIS extention CVE-2018-2782 in InnoDB and more info on http://www.oracle.com/technetwork/security-advisory/cpuapr2018-3678067.html#AppendixMSQL PR: 227621 Reported by: Markus Kohlmeyer <rootservice@gmail.com> Sponsored by: Netzkommune GmbH Notes: svn path=/head/; revision=467819
* databases/mysql57-server: Fix ${name}_limits regression on 11-STABLEMahdi Mokhtari2018-04-111-5/+4
| | | | | | | | | | This is port of r467049 (that was done on mysql56-server) PR: 227435 Reported by: 0mp Notes: svn path=/head/; revision=467051
* databases/mysql57-server: Adapt ${name}_limits to the new mechanismMahdi Mokhtari2018-04-042-14/+21
| | | | | | | | | | | | | | | | | | | | Regarding to the changes to rc.subr(8) it is no longer necessary to define a resource limiting logic in service scripts. limits(1) is now run by default and its configuration is handled via the "${name}_limits" variable. This however causes collision of variable names and also is not compatible with the old mechanism. This fixes the rc-script of mysql57 for the bases with both old and new mechanism. (This is port of the r466505 [and r466506]) PR: 227230 Submitted by: 0mp Reported by: 0mp Differential Revision: Netzkommune GmbH Notes: svn path=/head/; revision=466507
* databases/mysql57-server: Fix rc-script ${name}_limits conflict for ↵Mahdi Mokhtari2018-02-082-1/+6
| | | | | | | | | post-r328331 base This is port of r461217 Notes: svn path=/head/; revision=461218
* databases/mysql57-server: Delete no-longer-needed patch.Mahdi Mokhtari2018-01-181-63/+0
| | | | | | | | | The patch was casting variables to right size on previous versions Issue seems fixed by upstream it's not needed anymore. It also fixes a warning/error for from Clang6 on the port build. Notes: svn path=/head/; revision=459359
* databases/mysql56-{client, server}: Update to 5.7.21Mahdi Mokhtari2018-01-174-30/+11
| | | | | | | | | | | | | This update fixes bugs like CVE-2018-2696, CVE-2018-2562, CVE-2018-2640, CVE-2018-2668, CVE-2017-3737 (and more) in MySQL protocol by upstream. Delete local patches (CMake plugin macros) that are merged by upstream. PR: 225195 Sponsored by: Netzkommune GmbH Notes: svn path=/head/; revision=459295
* Update devel/protobuf to 3.5.0Sunpoet Po-Chuan Hsieh2017-12-111-1/+1
| | | | | | | | | - Bump PORTREVISION for shlib change Changes: https://github.com/google/protobuf/releases Notes: svn path=/head/; revision=456058
* Fix whitespace issues (mixed tab/spaces, alignment) in a few ports.Jimmy Olgeni2017-11-021-1/+1
| | | | | | | This round is @FreeBSD.org residents except teams. Notes: svn path=/head/; revision=453381
* databases/mysql57-{client, server}: Complete Upgrade of to 5.7.20 (as done ↵Mahdi Mokhtari2017-10-211-3/+7
| | | | | | | | | | | | | | | | | | | | by port-secteam in r452458) Using FreeBSD-ports libcurl and protobuf instead of bundled ones This upgrade includes: -Deprecation of these syntax constructs for table and column: .col_name .tbl_name .tbl_name.col_name -Bugfix of memory-leak in mysqldump Reviewed by: mat (mentor) Approved by: mat (mentor) Sponsored by: Netzkommune GmbH Differential Revision: https://reviews.freebsd.org/D12712 Notes: svn path=/head/; revision=452597
* databases/mysql57: Update to 5.7.20Mark Felder2017-10-192-5/+5
| | | | | | | | | Approved by: ports-secteam (with hat) MFH: 2017Q4 Security: c41bedfd-b3f9-11e7-ac58-b499baebfeaf Notes: svn path=/head/; revision=452458
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-1/+1
| | | | | | | | | | | | | | | | | (via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275 Notes: svn path=/head/; revision=449591
* MySQL ports: Extend CONFLICTS_INSTALL in conflicting ports.Vasil Dimov2017-08-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | databases/mysqlwsrep56-server has been present for some time and databases/mysqlwsrep57-server has been added recently. Both ports conflict with other MySQL server ports and this has been reflected in databases/mysqlwsrep5[67]-server/Makefile but must also be reflected in all conflicting ports' Makefiles as well. The conflicting ports are: databases/mariadb100-server databases/mariadb101-server databases/mariadb102-server databases/mariadb55-server databases/mysql55-server databases/mysql56-server databases/mysql57-server databases/mysql80-server databases/percona55-server databases/percona56-server databases/percona57-server There is not going to be mysqlwsrep*-client* ports (because the vanilla mysql*-client* ports suffice), so the entry in CONFLICTS just reads mysqlwsrep*. PR: 220791 Submitted by: vd Approved by: brnrd, ale (maintainer timeout), feld (maintainer timeout), flo, mmokhi, koobs Notes: svn path=/head/; revision=447926
* databases/mysql57-{server client}: Fix broken SASL/LDAP integration on ↵Mahdi Mokhtari2017-07-233-7/+66
| | | | | | | | | | | | | | | | | | | | | | newest 5.7.19 upgrade -Add a SASL/LDAP option for mysql57-client -Fix plugin.cmake for "FreeBSD != Linux" case For new plugin, MySQL build assumes everything is MacOS or Windows or Linux. This breaks upgrades when you have SASL/LDAP client-library installed. Because it "Decides" that you "Want" SASL/LDAP support and tries to build it. PR: 220865 Submitted by: mmokhi Reported by: Vladimir Omelchuk <admin@vladiom.com.ua> Reviewed by: mat, feld (mentors) Approved by: feld (mentor) MFH: 2017Q3 Differential Revision: https://reviews.freebsd.org/D11667 Notes: svn path=/head/; revision=446496
* databases/mysql57-{client/server}: Update to 5.7.19Mahdi Mokhtari2017-07-192-4/+4
| | | | | | | | | | | | | ChangeLog for this update: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/news-5-7-19.html PR: 220849 Reviewed by: mat (mentor) Approved by: mat (mentor) Sponsored by: Netzkommune GmbH Differential Revision: https://reviews.freebsd.org/D11656 Notes: svn path=/head/; revision=446203
* Make ninja opt-out in cmake.mkTobias C. Berner2017-06-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Using ninja instead of make (1) can lead to significant speed ups while building. Therefore switch from having the ninja generator opt-in to having it opt-out. Previously cmake-ports that wanted to use ninja could set CMAKE_NINJA=yes now, ports that do not work with ninja can set cmake:<existing args>,noninja Note, that needing this should be an exception and most often points to a broken cmake of the port. The ports using cmake were modified * removed USES=gmake, if ninja is used * removed MAKE_ARGS, if ninja is used * added the cmake-argument noninja if necessary PR: 219629 PR: 213331 Exp-run by: antoine Reviewed by: rakuco Differential Revision: https://reviews.freebsd.org/D10748 Notes: svn path=/head/; revision=444324
* databases/mysql57-{server client}: Update to latest 5.7.18 releaseMahdi Mokhtari2017-04-175-14/+14
| | | | | | | | | | | Fix some no-longer-valid (but needed) patches. Reviewed by: feld, mat (mentors) Approved by: feld (mentor) Differential Revision: https://reviews.freebsd.org/D10392 Notes: svn path=/head/; revision=438699