Просмотр исходного кода

add options for enabling/disabling additional storage engines and enable support for big (> 4GB) tables

Ralf S. Engelschall 19 лет назад
Родитель
Сommit
5717bc7f6d
1 измененных файлов с 14 добавлено и 1 удалено
  1. 14 1
      mysql/mysql.spec

+ 14 - 1
mysql/mysql.spec

@@ -39,12 +39,15 @@ Class:        BASE
 Group:        Database
 License:      GPL
 Version:      %{V_opkg}
-Release:      20060503
+Release:      20060514
 
 #   package options
 %option       with_server    yes
 %option       with_bdb       yes
 %option       with_innodb    yes
+%option       with_archive   yes
+%option       with_csv       yes
+%option       with_blackhole yes
 %option       with_ndb       no
 %option       with_ssl       no
 %option       with_embedded  no
@@ -126,6 +129,15 @@ AutoReqProv:  no
 %if "%{with_innodb}" == "no"
         --without-innodb \
 %endif
+%if "%{with_archive}" == "yes"
+        --with-archive-storage-engine \
+%endif
+%if "%{with_csv}" == "yes"
+        --with-csv-storage-engine \
+%endif
+%if "%{with_blackhole}" == "yes"
+        --with-blackhole-storage-engine \
+%endif
 %if "%{with_ssl}" == "yes"
         --with-openssl \
         --with-openssl-includes=%{l_prefix}/include \
@@ -142,6 +154,7 @@ AutoReqProv:  no
         --without-libedit \
         --with-vio \
         --with-named-z-libs=no \
+        --with-big-tables \
         --with-low-memory \
         --disable-shared \
         $opt