[-]
[+]
|
Deleted |
mysqlcluster-CentOS_5.spec
|
@@ -1,1738 +0,0 @@
-##############################################################################
-#
-# This is the spec file for the distribution specific RPM files
-#
-##############################################################################
-
-##############################################################################
-# Some common macro definitions
-##############################################################################
-
-%define mysql_version 6.3.20
-%define mysql_vendor Sun Microsystems, Inc.
-%define distribution centos5
-%define release 0.%{distribution}
-
-%define mysqld_user mysql
-%define mysqld_group mysql
-%define mysqldatadir /var/lib/mysql
-%define see_base For a description of MySQL see the base MySQL RPM or http://www.mysql.com
-
-# ------------------------------------------------------------------------------
-# Meta information, don't remove!
-# ------------------------------------------------------------------------------
-# norootforbuild
-
-# ------------------------------------------------------------------------------
-# On SuSE 9 no separate "debuginfo" package is built. To enable basic
-# debugging on that platform, we don't strip binaries on SuSE 9. We
-# disable the strip of binaries by redefining the RPM macro
-# "__os_install_post" leaving out the script calls that normally does
-# this. We do this in all cases, as on platforms where "debuginfo" is
-# created, a script "find-debuginfo.sh" will be called that will do
-# the strip anyway, part of separating the executable and debug
-# information into separate files put into separate packages.
-#
-# Some references (shows more advanced conditional usage):
-# http://www.redhat.com/archives/rpm-list/2001-November/msg00257.html
-# http://www.redhat.com/archives/rpm-list/2003-February/msg00275.html
-# http://www.redhat.com/archives/rhl-devel-list/2004-January/msg01546.html
-# http://lists.opensuse.org/archive/opensuse-commit/2006-May/1171.html
-# ------------------------------------------------------------------------------
-%define __os_install_post /usr/lib/rpm/brp-compress
-
-# ------------------------------------------------------------------------------
-# We don't package all files installed into the build root by intention -
-# See BUG#998 for details.
-# ------------------------------------------------------------------------------
-%define _unpackaged_files_terminate_build 0
-
-# ------------------------------------------------------------------------------
-# RPM build tools now automatically detects Perl module dependencies. This
-# detection gives problems as it is broken in some versions, and it also
-# give unwanted dependencies from mandatory scripts in our package.
-# Might not be possible to disable in all RPM tool versions, but here we
-# try. We keep the "AutoReqProv: no" for the "test" sub package, as disabling
-# here might fail, and that package has the most problems.
-# See http://fedoraproject.org/wiki/Packaging/Perl#Filtering_Requires:_and_Provides
-# http://www.wideopen.com/archives/rpm-list/2002-October/msg00343.html
-# ------------------------------------------------------------------------------
-%undefine __perl_provides
-%undefine __perl_requires
-
-##############################################################################
-# Command line handling
-##############################################################################
-
-# ----------------------------------------------------------------------
-# use "rpmbuild --with yassl" or "rpm --define '_with_yassl 1'" (for RPM 3.x)
-# to build with yaSSL support (off by default)
-# ----------------------------------------------------------------------
-%{?_with_yassl:%define YASSL_BUILD 1}
-%{!?_with_yassl:%define YASSL_BUILD 0}
-
-# ----------------------------------------------------------------------
-# use "rpmbuild --without libgcc" or "rpm --define '_without_libgcc 1'" (for RPM 3.x)
-# to include libgcc (as libmygcc) (on by default)
-# ----------------------------------------------------------------------
-%{!?_with_libgcc: %{!?_without_libgcc: %define WITH_LIBGCC 1}}
-%{?_with_libgcc:%define WITH_LIBGCC 1}
-%{?_without_libgcc:%define WITH_LIBGCC 0}
-
-##############################################################################
-# Product definitions - one of these has to be defined via the RPM build
-# options, e.g. "--define 'enterprise 1'"
-##############################################################################
-
-%{!?advanced:%define advanced 0}
-%{!?advanced_gpl:%define advanced_gpl 0}
-%{!?enterprise:%define enterprise 0}
-%{!?enterprise_gpl:%define enterprise_gpl 0}
-%{!?cluster_com:%define cluster_com 0}
-%{!?cluster_com_pro:%define cluster_com_pro 0}
-%{!?cluster_gpl:%define cluster_gpl 0}
-%{!?community:%define community 0}
-%{!?community_maria:%define community_maria 0}
-
-# On SuSE 9 no separate "debuginfo" package is built. To enable basic
-# debugging on that platform, we don't strip binaries on SuSE 9. We
-# disable the strip of binaries by redefining the RPM macro
-# "__os_install_post" leaving out the script calls that normally does
-# this. We do this in all cases, as on platforms where "debuginfo" is
-# created, a script "find-debuginfo.sh" will be called that will do
-# the strip anyway, part of separating the executable and debug
-# information into separate files put into separate packages.
-#
-# Some references (shows more advanced conditional usage):
-# http://www.redhat.com/archives/rpm-list/2001-November/msg00257.html
-# http://www.redhat.com/archives/rpm-list/2003-February/msg00275.html
-# http://www.redhat.com/archives/rhl-devel-list/2004-January/msg01546.html
-# http://lists.opensuse.org/archive/opensuse-commit/2006-May/1171.html
-
-%define __os_install_post /usr/lib/rpm/brp-compress
-
-%if %{community}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -community
-%define server_suffix -community
-%define ndbug_comment MySQL Community Server (GPL)
-%define debug_comment MySQL Community Server - Debug (GPL)
-%define commercial 0
-%define PARTITION_BUILD 1
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 1
-%define INNODB_BUILD 1
-%define MARIA_BUILD 0
-%define NORMAL_TEST_MODE test-bt
-%define DEBUG_TEST_MODE test-bt-debug
-%endif
-
-%if %{community_maria}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -community-maria
-%define server_suffix -community-maria
-%define ndbug_comment MySQL Community Server [Maria] (GPL)
-%define debug_comment MySQL Community Server - Debug [Maria] (GPL)
-%define commercial 0
-%define PARTITION_BUILD 1
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 1
-%define INNODB_BUILD 1
-%define MARIA_BUILD 1
-%define NORMAL_TEST_MODE test-bt
-%define DEBUG_TEST_MODE test-bt-debug
-%endif
-
-%if %{advanced}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -advanced
-%define server_suffix -advanced
-%define ndbug_comment MySQL Advanced Server (Commercial)
-%define debug_comment MySQL Advanced Server - Debug (Commercial)
-%define commercial 1
-%define PARTITION_BUILD 1
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 0
-%define INNODB_BUILD 1
-%define MARIA_BUILD 0
-%define NORMAL_TEST_MODE test-bt-fast
-%define DEBUG_TEST_MODE test-bt-debug-fast
-%endif
-
-%if %{advanced_gpl}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -advanced-gpl
-%define server_suffix -advanced-gpl
-%define ndbug_comment MySQL Advanced Server (GPL)
-%define debug_comment MySQL Advanced Server - Debug (GPL)
-%define commercial 0
-%define PARTITION_BUILD 1
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 0
-%define INNODB_BUILD 1
-%define MARIA_BUILD 0
-%define NORMAL_TEST_MODE test-bt
-%define DEBUG_TEST_MODE test-bt-debug
-%endif
-
-%if %{enterprise}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -enterprise
-%define server_suffix -enterprise
-%define ndbug_comment MySQL Enterprise Server (Commercial)
-%define debug_comment MySQL Enterprise Server - Debug (Commercial)
-%define commercial 1
-%define PARTITION_BUILD 0
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 0
-%define INNODB_BUILD 1
-%define MARIA_BUILD 0
|
[-]
[+]
|
Deleted |
mysqlcluster-RHEL_5.spec
^
|
@@ -1,1738 +0,0 @@
-##############################################################################
-#
-# This is the spec file for the distribution specific RPM files
-#
-##############################################################################
-
-##############################################################################
-# Some common macro definitions
-##############################################################################
-
-%define mysql_version 6.3.20
-%define mysql_vendor Sun Microsystems, Inc.
-%define distribution rhel5
-%define release 0.%{distribution}
-
-%define mysqld_user mysql
-%define mysqld_group mysql
-%define mysqldatadir /var/lib/mysql
-%define see_base For a description of MySQL see the base MySQL RPM or http://www.mysql.com
-
-# ------------------------------------------------------------------------------
-# Meta information, don't remove!
-# ------------------------------------------------------------------------------
-# norootforbuild
-
-# ------------------------------------------------------------------------------
-# On SuSE 9 no separate "debuginfo" package is built. To enable basic
-# debugging on that platform, we don't strip binaries on SuSE 9. We
-# disable the strip of binaries by redefining the RPM macro
-# "__os_install_post" leaving out the script calls that normally does
-# this. We do this in all cases, as on platforms where "debuginfo" is
-# created, a script "find-debuginfo.sh" will be called that will do
-# the strip anyway, part of separating the executable and debug
-# information into separate files put into separate packages.
-#
-# Some references (shows more advanced conditional usage):
-# http://www.redhat.com/archives/rpm-list/2001-November/msg00257.html
-# http://www.redhat.com/archives/rpm-list/2003-February/msg00275.html
-# http://www.redhat.com/archives/rhl-devel-list/2004-January/msg01546.html
-# http://lists.opensuse.org/archive/opensuse-commit/2006-May/1171.html
-# ------------------------------------------------------------------------------
-%define __os_install_post /usr/lib/rpm/brp-compress
-
-# ------------------------------------------------------------------------------
-# We don't package all files installed into the build root by intention -
-# See BUG#998 for details.
-# ------------------------------------------------------------------------------
-%define _unpackaged_files_terminate_build 0
-
-# ------------------------------------------------------------------------------
-# RPM build tools now automatically detects Perl module dependencies. This
-# detection gives problems as it is broken in some versions, and it also
-# give unwanted dependencies from mandatory scripts in our package.
-# Might not be possible to disable in all RPM tool versions, but here we
-# try. We keep the "AutoReqProv: no" for the "test" sub package, as disabling
-# here might fail, and that package has the most problems.
-# See http://fedoraproject.org/wiki/Packaging/Perl#Filtering_Requires:_and_Provides
-# http://www.wideopen.com/archives/rpm-list/2002-October/msg00343.html
-# ------------------------------------------------------------------------------
-%undefine __perl_provides
-%undefine __perl_requires
-
-##############################################################################
-# Command line handling
-##############################################################################
-
-# ----------------------------------------------------------------------
-# use "rpmbuild --with yassl" or "rpm --define '_with_yassl 1'" (for RPM 3.x)
-# to build with yaSSL support (off by default)
-# ----------------------------------------------------------------------
-%{?_with_yassl:%define YASSL_BUILD 1}
-%{!?_with_yassl:%define YASSL_BUILD 0}
-
-# ----------------------------------------------------------------------
-# use "rpmbuild --without libgcc" or "rpm --define '_without_libgcc 1'" (for RPM 3.x)
-# to include libgcc (as libmygcc) (on by default)
-# ----------------------------------------------------------------------
-%{!?_with_libgcc: %{!?_without_libgcc: %define WITH_LIBGCC 1}}
-%{?_with_libgcc:%define WITH_LIBGCC 1}
-%{?_without_libgcc:%define WITH_LIBGCC 0}
-
-##############################################################################
-# Product definitions - one of these has to be defined via the RPM build
-# options, e.g. "--define 'enterprise 1'"
-##############################################################################
-
-%{!?advanced:%define advanced 0}
-%{!?advanced_gpl:%define advanced_gpl 0}
-%{!?enterprise:%define enterprise 0}
-%{!?enterprise_gpl:%define enterprise_gpl 0}
-%{!?cluster_com:%define cluster_com 0}
-%{!?cluster_com_pro:%define cluster_com_pro 0}
-%{!?cluster_gpl:%define cluster_gpl 0}
-%{!?community:%define community 0}
-%{!?community_maria:%define community_maria 0}
-
-# On SuSE 9 no separate "debuginfo" package is built. To enable basic
-# debugging on that platform, we don't strip binaries on SuSE 9. We
-# disable the strip of binaries by redefining the RPM macro
-# "__os_install_post" leaving out the script calls that normally does
-# this. We do this in all cases, as on platforms where "debuginfo" is
-# created, a script "find-debuginfo.sh" will be called that will do
-# the strip anyway, part of separating the executable and debug
-# information into separate files put into separate packages.
-#
-# Some references (shows more advanced conditional usage):
-# http://www.redhat.com/archives/rpm-list/2001-November/msg00257.html
-# http://www.redhat.com/archives/rpm-list/2003-February/msg00275.html
-# http://www.redhat.com/archives/rhl-devel-list/2004-January/msg01546.html
-# http://lists.opensuse.org/archive/opensuse-commit/2006-May/1171.html
-
-%define __os_install_post /usr/lib/rpm/brp-compress
-
-%if %{community}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -community
-%define server_suffix -community
-%define ndbug_comment MySQL Community Server (GPL)
-%define debug_comment MySQL Community Server - Debug (GPL)
-%define commercial 0
-%define PARTITION_BUILD 1
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 1
-%define INNODB_BUILD 1
-%define MARIA_BUILD 0
-%define NORMAL_TEST_MODE test-bt
-%define DEBUG_TEST_MODE test-bt-debug
-%endif
-
-%if %{community_maria}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -community-maria
-%define server_suffix -community-maria
-%define ndbug_comment MySQL Community Server [Maria] (GPL)
-%define debug_comment MySQL Community Server - Debug [Maria] (GPL)
-%define commercial 0
-%define PARTITION_BUILD 1
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 1
-%define INNODB_BUILD 1
-%define MARIA_BUILD 1
-%define NORMAL_TEST_MODE test-bt
-%define DEBUG_TEST_MODE test-bt-debug
-%endif
-
-%if %{advanced}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -advanced
-%define server_suffix -advanced
-%define ndbug_comment MySQL Advanced Server (Commercial)
-%define debug_comment MySQL Advanced Server - Debug (Commercial)
-%define commercial 1
-%define PARTITION_BUILD 1
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 0
-%define INNODB_BUILD 1
-%define MARIA_BUILD 0
-%define NORMAL_TEST_MODE test-bt-fast
-%define DEBUG_TEST_MODE test-bt-debug-fast
-%endif
-
-%if %{advanced_gpl}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -advanced-gpl
-%define server_suffix -advanced-gpl
-%define ndbug_comment MySQL Advanced Server (GPL)
-%define debug_comment MySQL Advanced Server - Debug (GPL)
-%define commercial 0
-%define PARTITION_BUILD 1
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 0
-%define INNODB_BUILD 1
-%define MARIA_BUILD 0
-%define NORMAL_TEST_MODE test-bt
-%define DEBUG_TEST_MODE test-bt-debug
-%endif
-
-%if %{enterprise}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -enterprise
-%define server_suffix -enterprise
-%define ndbug_comment MySQL Enterprise Server (Commercial)
-%define debug_comment MySQL Enterprise Server - Debug (Commercial)
-%define commercial 1
-%define PARTITION_BUILD 0
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 0
-%define INNODB_BUILD 1
-%define MARIA_BUILD 0
|
[-]
[+]
|
Deleted |
mysqlcluster-SLE_10.spec
^
|
@@ -1,1738 +0,0 @@
-##############################################################################
-#
-# This is the spec file for the distribution specific RPM files
-#
-##############################################################################
-
-##############################################################################
-# Some common macro definitions
-##############################################################################
-
-%define mysql_version 6.3.20
-%define mysql_vendor Sun Microsystems, Inc.
-%define distribution sles10
-%define release 0.%{distribution}
-
-%define mysqld_user mysql
-%define mysqld_group mysql
-%define mysqldatadir /var/lib/mysql
-%define see_base For a description of MySQL see the base MySQL RPM or http://www.mysql.com
-
-# ------------------------------------------------------------------------------
-# Meta information, don't remove!
-# ------------------------------------------------------------------------------
-# norootforbuild
-
-# ------------------------------------------------------------------------------
-# On SuSE 9 no separate "debuginfo" package is built. To enable basic
-# debugging on that platform, we don't strip binaries on SuSE 9. We
-# disable the strip of binaries by redefining the RPM macro
-# "__os_install_post" leaving out the script calls that normally does
-# this. We do this in all cases, as on platforms where "debuginfo" is
-# created, a script "find-debuginfo.sh" will be called that will do
-# the strip anyway, part of separating the executable and debug
-# information into separate files put into separate packages.
-#
-# Some references (shows more advanced conditional usage):
-# http://www.redhat.com/archives/rpm-list/2001-November/msg00257.html
-# http://www.redhat.com/archives/rpm-list/2003-February/msg00275.html
-# http://www.redhat.com/archives/rhl-devel-list/2004-January/msg01546.html
-# http://lists.opensuse.org/archive/opensuse-commit/2006-May/1171.html
-# ------------------------------------------------------------------------------
-%define __os_install_post /usr/lib/rpm/brp-compress
-
-# ------------------------------------------------------------------------------
-# We don't package all files installed into the build root by intention -
-# See BUG#998 for details.
-# ------------------------------------------------------------------------------
-%define _unpackaged_files_terminate_build 0
-
-# ------------------------------------------------------------------------------
-# RPM build tools now automatically detects Perl module dependencies. This
-# detection gives problems as it is broken in some versions, and it also
-# give unwanted dependencies from mandatory scripts in our package.
-# Might not be possible to disable in all RPM tool versions, but here we
-# try. We keep the "AutoReqProv: no" for the "test" sub package, as disabling
-# here might fail, and that package has the most problems.
-# See http://fedoraproject.org/wiki/Packaging/Perl#Filtering_Requires:_and_Provides
-# http://www.wideopen.com/archives/rpm-list/2002-October/msg00343.html
-# ------------------------------------------------------------------------------
-%undefine __perl_provides
-%undefine __perl_requires
-
-##############################################################################
-# Command line handling
-##############################################################################
-
-# ----------------------------------------------------------------------
-# use "rpmbuild --with yassl" or "rpm --define '_with_yassl 1'" (for RPM 3.x)
-# to build with yaSSL support (off by default)
-# ----------------------------------------------------------------------
-%{?_with_yassl:%define YASSL_BUILD 1}
-%{!?_with_yassl:%define YASSL_BUILD 0}
-
-# ----------------------------------------------------------------------
-# use "rpmbuild --without libgcc" or "rpm --define '_without_libgcc 1'" (for RPM 3.x)
-# to include libgcc (as libmygcc) (on by default)
-# ----------------------------------------------------------------------
-%{!?_with_libgcc: %{!?_without_libgcc: %define WITH_LIBGCC 1}}
-%{?_with_libgcc:%define WITH_LIBGCC 1}
-%{?_without_libgcc:%define WITH_LIBGCC 0}
-
-##############################################################################
-# Product definitions - one of these has to be defined via the RPM build
-# options, e.g. "--define 'enterprise 1'"
-##############################################################################
-
-%{!?advanced:%define advanced 0}
-%{!?advanced_gpl:%define advanced_gpl 0}
-%{!?enterprise:%define enterprise 0}
-%{!?enterprise_gpl:%define enterprise_gpl 0}
-%{!?cluster_com:%define cluster_com 0}
-%{!?cluster_com_pro:%define cluster_com_pro 0}
-%{!?cluster_gpl:%define cluster_gpl 0}
-%{!?community:%define community 0}
-%{!?community_maria:%define community_maria 0}
-
-# On SuSE 9 no separate "debuginfo" package is built. To enable basic
-# debugging on that platform, we don't strip binaries on SuSE 9. We
-# disable the strip of binaries by redefining the RPM macro
-# "__os_install_post" leaving out the script calls that normally does
-# this. We do this in all cases, as on platforms where "debuginfo" is
-# created, a script "find-debuginfo.sh" will be called that will do
-# the strip anyway, part of separating the executable and debug
-# information into separate files put into separate packages.
-#
-# Some references (shows more advanced conditional usage):
-# http://www.redhat.com/archives/rpm-list/2001-November/msg00257.html
-# http://www.redhat.com/archives/rpm-list/2003-February/msg00275.html
-# http://www.redhat.com/archives/rhl-devel-list/2004-January/msg01546.html
-# http://lists.opensuse.org/archive/opensuse-commit/2006-May/1171.html
-
-%define __os_install_post /usr/lib/rpm/brp-compress
-
-%if %{community}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -community
-%define server_suffix -community
-%define ndbug_comment MySQL Community Server (GPL)
-%define debug_comment MySQL Community Server - Debug (GPL)
-%define commercial 0
-%define PARTITION_BUILD 1
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 1
-%define INNODB_BUILD 1
-%define MARIA_BUILD 0
-%define NORMAL_TEST_MODE test-bt
-%define DEBUG_TEST_MODE test-bt-debug
-%endif
-
-%if %{community_maria}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -community-maria
-%define server_suffix -community-maria
-%define ndbug_comment MySQL Community Server [Maria] (GPL)
-%define debug_comment MySQL Community Server - Debug [Maria] (GPL)
-%define commercial 0
-%define PARTITION_BUILD 1
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 1
-%define INNODB_BUILD 1
-%define MARIA_BUILD 1
-%define NORMAL_TEST_MODE test-bt
-%define DEBUG_TEST_MODE test-bt-debug
-%endif
-
-%if %{advanced}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -advanced
-%define server_suffix -advanced
-%define ndbug_comment MySQL Advanced Server (Commercial)
-%define debug_comment MySQL Advanced Server - Debug (Commercial)
-%define commercial 1
-%define PARTITION_BUILD 1
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 0
-%define INNODB_BUILD 1
-%define MARIA_BUILD 0
-%define NORMAL_TEST_MODE test-bt-fast
-%define DEBUG_TEST_MODE test-bt-debug-fast
-%endif
-
-%if %{advanced_gpl}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -advanced-gpl
-%define server_suffix -advanced-gpl
-%define ndbug_comment MySQL Advanced Server (GPL)
-%define debug_comment MySQL Advanced Server - Debug (GPL)
-%define commercial 0
-%define PARTITION_BUILD 1
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 0
-%define INNODB_BUILD 1
-%define MARIA_BUILD 0
-%define NORMAL_TEST_MODE test-bt
-%define DEBUG_TEST_MODE test-bt-debug
-%endif
-
-%if %{enterprise}
-%define product_name MySQL Server
-%define base_product_prefix MySQL
-%define product_prefix MySQL
-%define product_suffix -enterprise
-%define server_suffix -enterprise
-%define ndbug_comment MySQL Enterprise Server (Commercial)
-%define debug_comment MySQL Enterprise Server - Debug (Commercial)
-%define commercial 1
-%define PARTITION_BUILD 0
-%define CLUSTER_BUILD 0
-%define COMMUNITY_BUILD 0
-%define INNODB_BUILD 1
-%define MARIA_BUILD 0
|
[-]
[+]
|
Added |
mysqlcluster.spec
^
|
|