OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 14-May-2006 16:54:03
Branch: HEAD Handle: 2006051415540300
Modified files:
openpkg-src/mysql mysql.spec
Log:
add options for enabling/disabling additional storage engines and
enable support for big (> 4GB) tables
Summary:
Revision Changes Path
1.145 +14 -1 openpkg-src/mysql/mysql.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/mysql/mysql.spec
============================================================================
$ cvs diff -u -r1.144 -r1.145 mysql.spec
--- openpkg-src/mysql/mysql.spec 3 May 2006 21:24:24 -0000 1.144
+++ openpkg-src/mysql/mysql.spec 14 May 2006 14:54:03 -0000 1.145
@@ -39,12 +39,15 @@
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 @@
%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 @@
--without-libedit \
--with-vio \
--with-named-z-libs=no \
+ --with-big-tables \
--with-low-memory \
--disable-shared \
$opt
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [email protected]