~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbxt/plugin.am

Merge in Joe's transaction id code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Used to build Makefile.in
 
2
 
 
3
if BUILD_PBXT_PLUGIN
 
4
noinst_LTLIBRARIES+=            plugin/pbxt/libpbxt.la
 
5
endif
 
6
 
 
7
noinst_HEADERS+= \
 
8
                 plugin/pbxt/src/backup_xt.h \
 
9
                 plugin/pbxt/src/bsearch_xt.h \
 
10
                 plugin/pbxt/src/cache_xt.h \
 
11
                 plugin/pbxt/src/ccutils_xt.h \
 
12
                 plugin/pbxt/src/database_xt.h \
 
13
                 plugin/pbxt/src/datadic_xt.h \
 
14
                 plugin/pbxt/src/datalog_xt.h \
 
15
                 plugin/pbxt/src/discover_xt.h \
 
16
                 plugin/pbxt/src/filesys_xt.h \
 
17
                 plugin/pbxt/src/ha_pbxt.h \
 
18
                 plugin/pbxt/src/ha_xtsys.h \
 
19
                 plugin/pbxt/src/hashtab_xt.h \
 
20
                 plugin/pbxt/src/heap_xt.h \
 
21
                 plugin/pbxt/src/index_xt.h \
 
22
                 plugin/pbxt/src/linklist_xt.h \
 
23
                 plugin/pbxt/src/locklist_xt.h \
 
24
                 plugin/pbxt/src/lock_xt.h \
 
25
                 plugin/pbxt/src/memory_xt.h \
 
26
                 plugin/pbxt/src/myxt_xt.h \
 
27
                 plugin/pbxt/src/pbms.h \
 
28
                 plugin/pbxt/src/pthread_xt.h \
 
29
                 plugin/pbxt/src/restart_xt.h \
 
30
                 plugin/pbxt/src/sortedlist_xt.h \
 
31
                 plugin/pbxt/src/strutil_xt.h \
 
32
                 plugin/pbxt/src/systab_xt.h \
 
33
                 plugin/pbxt/src/tabcache_xt.h \
 
34
                 plugin/pbxt/src/table_xt.h \
 
35
                 plugin/pbxt/src/thread_xt.h \
 
36
                 plugin/pbxt/src/trace_xt.h \
 
37
                 plugin/pbxt/src/util_xt.h \
 
38
                 plugin/pbxt/src/xaction_xt.h \
 
39
                 plugin/pbxt/src/xactlog_xt.h \
 
40
                 plugin/pbxt/src/xt_config.h \
 
41
                 plugin/pbxt/src/xt_defs.h \
 
42
                 plugin/pbxt/src/xt_errno.h
 
43
 
 
44
 
 
45
plugin_pbxt_libpbxt_la_CXXFLAGS=        ${AM_CXXFLAGS} -DDRIZZLED ${PBXT_EXTRA_CXXFLAGS}
 
46
plugin_pbxt_libpbxt_la_CFLAGS=          ${AM_CFLAGS} -DDRIZZLED
 
47
 
 
48
plugin_pbxt_libpbxt_la_SOURCES= \
 
49
                                plugin/pbxt/src/bsearch_xt.cc \
 
50
                                plugin/pbxt/src/cache_xt.cc \
 
51
                                plugin/pbxt/src/ccutils_xt.cc \
 
52
                                plugin/pbxt/src/database_xt.cc \
 
53
                                plugin/pbxt/src/datadic_xt.cc \
 
54
                                plugin/pbxt/src/datalog_xt.cc \
 
55
                                plugin/pbxt/src/discover_xt.cc \
 
56
                                plugin/pbxt/src/filesys_xt.cc \
 
57
                                plugin/pbxt/src/ha_xtsys.cc \
 
58
                                plugin/pbxt/src/hashtab_xt.cc \
 
59
                                plugin/pbxt/src/heap_xt.cc \
 
60
                                plugin/pbxt/src/index_xt.cc \
 
61
                                plugin/pbxt/src/linklist_xt.cc \
 
62
                                plugin/pbxt/src/lock_xt.cc \
 
63
                                plugin/pbxt/src/memory_xt.cc \
 
64
                                plugin/pbxt/src/myxt_xt.cc \
 
65
                                plugin/pbxt/src/pthread_xt.cc \
 
66
                                plugin/pbxt/src/restart_xt.cc \
 
67
                                plugin/pbxt/src/sortedlist_xt.cc \
 
68
                                plugin/pbxt/src/strutil_xt.cc \
 
69
                                plugin/pbxt/src/systab_xt.cc \
 
70
                                plugin/pbxt/src/tabcache_xt.cc \
 
71
                                plugin/pbxt/src/table_xt.cc \
 
72
                                plugin/pbxt/src/thread_xt.cc \
 
73
                                plugin/pbxt/src/trace_xt.cc \
 
74
                                plugin/pbxt/src/util_xt.cc \
 
75
                                plugin/pbxt/src/xaction_xt.cc \
 
76
                                plugin/pbxt/src/xactlog_xt.cc
 
77
 
 
78
EXTRA_DIST+= \
 
79
             plugin/pbxt/bin/xtstat_xt.cc \
 
80
             plugin/pbxt/src/backup_xt.cc