~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/Makefile.am

Added code necessary for building plugins dynamically.
Merged in changes from lifeless to allow autoreconf to work.
Touching plugin.ini files now triggers a rebuid - so config/autorun.sh is no
longer required to be run after touching those.
Removed the duplicate plugin names - also removed the issue that getting them
different would silently fail weirdly later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
                table_raw_reader \
29
29
                table_writer \
30
30
                transaction_reader \
31
 
                command_reader \
32
31
                transaction_writer \
33
32
                master_list_reader \
34
33
                master_list_writer \
42
41
 
43
42
libdrizzledmessage_la_CXXFLAGS = ${AM_CXXFLAGS} ${NO_WERROR}
44
43
 
45
 
libdrizzledmessage_la_SOURCES = command_transform.cc statement_transform.cc
 
44
libdrizzledmessage_la_SOURCES = statement_transform.cc
46
45
 
47
46
messageincludedir= ${includedir}/drizzled/message
48
 
messageinclude_HEADERS= command_transform.h statement_transform.h
 
47
messageinclude_HEADERS= statement_transform.h
49
48
 
50
49
nodist_libdrizzledmessage_la_SOURCES = \
51
50
                binary_log.pb.cc \
52
51
                master_list.pb.cc \
53
 
                replication.pb.cc \
 
52
                transaction.pb.cc \
54
53
                schema.pb.cc \
55
54
                table.pb.cc
56
55
 
57
56
nodist_noinst_HEADERS= \
58
57
                binary_log.pb.h \
59
58
                master_list.pb.h \
60
 
                replication.pb.h \
 
59
                transaction.pb.h \
61
60
                schema.pb.h \
62
61
                table.pb.h 
63
62
 
85
84
master_list_reader_SOURCES =  master_list_reader.cc
86
85
 
87
86
transaction_writer_SOURCES =  transaction_writer.cc transaction.pb.cc
 
87
transaction_writer_LDADD = ${LDADD} ${top_builddir}/drizzled/hash/libhash.la
88
88
 
89
89
transaction_reader_SOURCES =  transaction_reader.cc transaction.pb.cc
 
90
transaction_reader_LDADD = ${LDADD} ${top_builddir}/drizzled/hash/libhash.la
90
91
 
91
 
# @TODO: Remove this when Jay's branch hits replacing replication.pb fully
92
92
transaction_writer_CXXFLAGS = ${AM_CXXFLAGS} ${NO_WERROR}
93
93
transaction_reader_CXXFLAGS = ${AM_CXXFLAGS} ${NO_WERROR}
94
94
 
95
 
command_reader_SOURCES =  command_reader.cc
96
 
 
97
95
length_SOURCES = length.cc
98
96
 
99
97
EXTRA_DIST = \
101
99
                table.proto \
102
100
                binary_log.proto \
103
101
                master_list.proto \
104
 
                replication.proto \
105
102
                transaction.proto \
106
103
                check_length.sh
107
104
 
109
106
                schema.pb.h \
110
107
                table.pb.h \
111
108
                binary_log.pb.h \
112
 
                replication.pb.h \
113
109
                transaction.pb.h \
114
110
                master_list.pb.h
115
111
 
120
116
                schema.pb.cc \
121
117
                table.pb.h \
122
118
                table.pb.cc \
123
 
                replication.pb.h \
124
 
                replication.pb.cc \
125
119
                transaction.pb.h \
126
120
                transaction.pb.cc \
127
121
                master_list.pb.h \