~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/plug.in

  • Committer: Monty
  • Date: 2008-11-07 05:51:15 UTC
  • mto: This revision was merged to the branch mainline in revision 579.
  • Revision ID: mordred@palanthas.inaugust.com-20081107055115-0275gvq62buzls77
Fixed a decimal sign thing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#  Copyright (C) 2009 Sun Microsystems, Inc.
2
 
#
3
 
#  This program is free software; you can redistribute it and/or modify
4
 
#  it under the terms of the GNU General Public License as published by
5
 
#  the Free Software Foundation; version 2 of the License.
6
 
#
7
 
#  This program is distributed in the hope that it will be useful,
8
 
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
 
#  GNU General Public License for more details.
11
 
#
12
 
#  You should have received a copy of the GNU General Public License
13
 
#  along with this program; if not, write to the Free Software
14
 
#  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
15
 
 
16
 
[plugin]
17
 
title=MyISAM Storage Engine
18
 
description=Legacy non-transactional MySQL tables
19
 
load_by_default=yes
20
 
sources=ha_myisam.cc
21
 
libs=plugin/myisam/libmyisam.la drizzled/internal/libinternal.la
22
 
ldflags=$(LIBZ) $(LIBINTL)
23
 
static=yes
 
1
DRIZZLE_STORAGE_ENGINE(myisam,no, [MyISAM Storage Engine],
 
2
        [Traditional non-transactional MySQL tables])
 
3
DRIZZLE_PLUGIN_DIRECTORY(myisam,  [storage/myisam])
 
4
DRIZZLE_PLUGIN_STATIC(myisam,     [libmyisam.la])
 
5
DRIZZLE_PLUGIN_MANDATORY(myisam)  dnl Default
 
6
DRIZZLE_PLUGIN_DEPENDS_ON_DRIZZLE_INTERNALS(myisam, [ha_myisam.cc])