~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memory/plugin.am

  • Committer: patrick crews
  • Date: 2010-09-12 14:34:27 UTC
  • mto: (1762.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1763.
  • Revision ID: gleebix@gmail.com-20100912143427-m33z5wfdofkfbu06
Moved engine-specific tests to their respective plugin directories.  Renamed plugin/heap -> plugin/memory due to issues with pandora build and the test suite with two names (engine+plugin = memory, dirname = heap)

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
if BUILD_MEMORY_PLUGIN
18
 
noinst_LTLIBRARIES+=    plugin/heap/libheap.la
 
18
noinst_LTLIBRARIES+=    plugin/memory/libheap.la
19
19
endif
20
20
noinst_HEADERS+= \
21
 
                        plugin/heap/ha_heap.h \
22
 
                        plugin/heap/heap.h \
23
 
                        plugin/heap/heap_priv.h
24
 
plugin_heap_libheap_la_SOURCES= \
25
 
                        plugin/heap/hp_block.cc \
26
 
                        plugin/heap/hp_clear.cc \
27
 
                        plugin/heap/hp_close.cc \
28
 
                        plugin/heap/hp_create.cc \
29
 
                        plugin/heap/hp_delete.cc \
30
 
                        plugin/heap/hp_dspace.cc \
31
 
                        plugin/heap/hp_extra.cc \
32
 
                        plugin/heap/hp_hash.cc \
33
 
                        plugin/heap/hp_info.cc \
34
 
                        plugin/heap/hp_open.cc \
35
 
                        plugin/heap/hp_panic.cc \
36
 
                        plugin/heap/hp_record.cc \
37
 
                        plugin/heap/hp_rectest.cc \
38
 
                        plugin/heap/hp_rename.cc \
39
 
                        plugin/heap/hp_rfirst.cc \
40
 
                        plugin/heap/hp_rkey.cc \
41
 
                        plugin/heap/hp_rlast.cc \
42
 
                        plugin/heap/hp_rnext.cc \
43
 
                        plugin/heap/hp_rprev.cc \
44
 
                        plugin/heap/hp_rrnd.cc \
45
 
                        plugin/heap/hp_rsame.cc \
46
 
                        plugin/heap/hp_scan.cc \
47
 
                        plugin/heap/hp_static.cc \
48
 
                        plugin/heap/hp_update.cc \
49
 
                        plugin/heap/hp_write.cc
 
21
                        plugin/memory/ha_heap.h \
 
22
                        plugin/memory/heap.h \
 
23
                        plugin/memory/heap_priv.h
 
24
plugin_memory_libheap_la_SOURCES= \
 
25
                        plugin/memory/hp_block.cc \
 
26
                        plugin/memory/hp_clear.cc \
 
27
                        plugin/memory/hp_close.cc \
 
28
                        plugin/memory/hp_create.cc \
 
29
                        plugin/memory/hp_delete.cc \
 
30
                        plugin/memory/hp_dspace.cc \
 
31
                        plugin/memory/hp_extra.cc \
 
32
                        plugin/memory/hp_hash.cc \
 
33
                        plugin/memory/hp_info.cc \
 
34
                        plugin/memory/hp_open.cc \
 
35
                        plugin/memory/hp_panic.cc \
 
36
                        plugin/memory/hp_record.cc \
 
37
                        plugin/memory/hp_rectest.cc \
 
38
                        plugin/memory/hp_rename.cc \
 
39
                        plugin/memory/hp_rfirst.cc \
 
40
                        plugin/memory/hp_rkey.cc \
 
41
                        plugin/memory/hp_rlast.cc \
 
42
                        plugin/memory/hp_rnext.cc \
 
43
                        plugin/memory/hp_rprev.cc \
 
44
                        plugin/memory/hp_rrnd.cc \
 
45
                        plugin/memory/hp_rsame.cc \
 
46
                        plugin/memory/hp_scan.cc \
 
47
                        plugin/memory/hp_static.cc \
 
48
                        plugin/memory/hp_update.cc \
 
49
                        plugin/memory/hp_write.cc
50
50