1455.3.1
by Vladimir Kolesnikov
lp:drizzle + pbxt 1.1 + test results |
1 |
# Used to build Makefile.in |
2 |
||
1497.3.20
by Monty Taylor
Wrap the libraries in if BUILD_*_PLUGIN so that they don't build when we're |
3 |
if BUILD_PBXT_PLUGIN |
1455.3.1
by Vladimir Kolesnikov
lp:drizzle + pbxt 1.1 + test results |
4 |
noinst_LTLIBRARIES+= plugin/pbxt/libpbxt.la |
1497.3.20
by Monty Taylor
Wrap the libraries in if BUILD_*_PLUGIN so that they don't build when we're |
5 |
endif
|
1455.3.1
by Vladimir Kolesnikov
lp:drizzle + pbxt 1.1 + test results |
6 |
|
7 |
noinst_HEADERS+= \ |
|
1464.1.3
by Monty Taylor
More build |
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 |
|
1455.3.1
by Vladimir Kolesnikov
lp:drizzle + pbxt 1.1 + test results |
43 |
|
44 |
||
1468.1.3
by Monty Taylor
Moved gcc-specific optoins to their own thing. |
45 |
plugin_pbxt_libpbxt_la_CXXFLAGS= ${AM_CXXFLAGS} -DDRIZZLED ${PBXT_EXTRA_CXXFLAGS} |
1464.1.1
by Monty Taylor
Fixed a few pbxt build issues. |
46 |
plugin_pbxt_libpbxt_la_CFLAGS= ${AM_CFLAGS} -DDRIZZLED |
1455.3.1
by Vladimir Kolesnikov
lp:drizzle + pbxt 1.1 + test results |
47 |
|
48 |
plugin_pbxt_libpbxt_la_SOURCES= \ |
|
1464.1.3
by Monty Taylor
More build |
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 |
|
1464.1.4
by Monty Taylor
Ship plugin/pbxt/bin. |
77 |
|
1464.1.6
by Monty Taylor
Fixed a few further things. |
78 |
EXTRA_DIST+= \ |
79 |
plugin/pbxt/bin/xtstat_xt.cc \ |
|
80 |
plugin/pbxt/src/backup_xt.cc |