diff options
author | Bernard Spil <brnrd@FreeBSD.org> | 2016-02-13 19:02:11 +0000 |
---|---|---|
committer | Bernard Spil <brnrd@FreeBSD.org> | 2016-02-13 19:02:11 +0000 |
commit | eaba6fd276e88a4d7d31206b165709689b057dc3 (patch) | |
tree | ec99111658fa37fc7b9707a154f5335176cd717c /databases/mariadb101-server/files/patch-CMakeLists.txt | |
parent | Fix strange build issue related to xdg-utils. (diff) |
[NEW PORTS] databases/mariadb101-{server,client}: 10.1.11
MariaDB is one of the most popular database servers in the world. It's made
by the original developers of MySQL and guaranteed to stay open source.
Notable users include Wikipedia, Facebook and Google.
MariaDB turns data into structured information in a wide array of
applications, ranging from banking to websites. It is an enhanced, drop-in
replacement for MySQL. MariaDB is used because it is fast, scalable and
robust, with a rich ecosystem of storage engines, plugins and many other
tools make it very versatile for a wide variety of use cases.
MariaDB is developed as open source software and as a relational database
it provides an SQL interface for accessing data. This latest versions of
MariaDB also include GIS and JSON features.
WWW: http://mariadb.org/
Reviewed by: koobs (mentor), feld (mentor)
Approved by: koobs (mentor), feld (mentor)
Differential Revision: D3953
Notes
Notes:
svn path=/head/; revision=408822
Diffstat (limited to 'databases/mariadb101-server/files/patch-CMakeLists.txt')
-rw-r--r-- | databases/mariadb101-server/files/patch-CMakeLists.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/databases/mariadb101-server/files/patch-CMakeLists.txt b/databases/mariadb101-server/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..0a25755095a1 --- /dev/null +++ b/databases/mariadb101-server/files/patch-CMakeLists.txt @@ -0,0 +1,20 @@ +Fix up missing WITHOUT_DOCS, WITHOUT_CLIENT options + +--- CMakeLists.txt.orig 2015-10-15 15:43:35 UTC ++++ CMakeLists.txt +@@ -452,6 +452,7 @@ ADD_CUSTOM_TARGET(INFO_BIN ALL + WORKING_DIRECTORY ${CMAKE_BINARY_DIR} + ) + ++IF(FALSE) + INSTALL_DOCUMENTATION(README CREDITS COPYING COPYING.LESSER COPYING.thirdparty + EXCEPTIONS-CLIENT COMPONENT Readme) + # MDEV-6526 these files are not installed anymore +@@ -462,6 +463,7 @@ IF(UNIX) + INSTALL_DOCUMENTATION(Docs/INSTALL-BINARY COMPONENT Readme) + INSTALL_DOCUMENTATION(Docs/INSTALL-BINARY Docs/README-wsrep COMPONENT Readme) + ENDIF() ++ENDIF() + + INCLUDE(CPack) + |