~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/include.am

  • Committer: David Shrewsbury
  • Date: 2010-09-09 21:56:04 UTC
  • mto: (1754.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1755.
  • Revision ID: shrewsbury.dave@gmail.com-20100909215604-hi1jaml3z3z9ozb7
Use of String::c_ptr() in temporal functions can corrupt PBXT row cache, so make sure temporaries are used.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
14
14
# You should have received a copy of the GNU General Public License
15
15
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
 
18
18
MESSAGE_DIR=drizzled/message
19
19
MESSAGE_LDADD= \
32
32
                  drizzled/message/table_raw_reader \
33
33
                  drizzled/message/table_reader \
34
34
                  drizzled/message/table_writer \
 
35
                  drizzled/message/transaction_reader \
35
36
                  drizzled/message/transaction_writer
36
37
 
37
38
lib_LTLIBRARIES += drizzled/message/libdrizzledmessage.la
41
42
drizzled_message_libdrizzledmessage_la_SOURCES = drizzled/message/statement_transform.cc
42
43
drizzled_message_libdrizzledmessage_la_LIBADD= ${LTLIBPROTOBUF} $(GCOV_LIBS) drizzled/libcharset.la
43
44
 
44
 
nobase_dist_include_HEADERS+= drizzled/message/statement_transform.h \
45
 
                                                drizzled/message/schema.h \
46
 
                                                drizzled/message/table.h
 
45
nobase_dist_include_HEADERS+= drizzled/message/statement_transform.h
47
46
 
48
47
nodist_drizzled_message_libdrizzledmessage_la_SOURCES = \
49
 
                                                        drizzled/message/event.pb.cc \
50
48
                                                        drizzled/message/engine.pb.cc \
51
49
                                                        drizzled/message/transaction.pb.cc \
52
50
                                                        drizzled/message/schema.pb.cc \
53
 
                                                        drizzled/message/resultset.pb.cc \
 
51
                                                        drizzled/message/resultset.pb.cc \
54
52
                                                        drizzled/message/table.pb.cc
55
53
 
56
54
nobase_nodist_include_HEADERS+= \
57
 
                                drizzled/message/event.pb.h \
58
55
                                drizzled/message/engine.pb.h \
59
56
                                drizzled/message/transaction.pb.h \
60
57
                                drizzled/message/schema.pb.h \
61
 
                                drizzled/message/resultset.pb.h \
 
58
                                drizzled/message/resultset.pb.h \
62
59
                                drizzled/message/table.pb.h 
63
60
 
64
61
noinst_HEADERS+= \
65
 
                drizzled/message/ioutil.h 
 
62
                drizzled/message/ioutil.h \
 
63
                drizzled/message/all.h
 
64
 
66
65
 
67
66
drizzled_message_schema_reader_SOURCES =  drizzled/message/schema_reader.cc
68
67
drizzled_message_schema_reader_LDADD = ${MESSAGE_LDADD}
88
87
drizzled_message_transaction_writer_LDADD = ${MESSAGE_LDADD} ${top_builddir}/drizzled/algorithm/libhash.la
89
88
drizzled_message_transaction_writer_CXXFLAGS = ${MESSAGE_AM_CXXFLAGS} ${NO_WERROR}
90
89
 
 
90
drizzled_message_transaction_reader_SOURCES =  drizzled/message/transaction_reader.cc
 
91
drizzled_message_transaction_reader_LDADD = ${MESSAGE_LDADD} ${top_builddir}/drizzled/algorithm/libhash.la ${top_builddir}/drizzled/util/libutil.la
 
92
drizzled_message_transaction_reader_CXXFLAGS = ${MESSAGE_AM_CXXFLAGS} ${NO_WERROR}
 
93
 
91
94
EXTRA_DIST += \
92
 
                ${MESSAGE_DIR}/event.proto \
93
95
                ${MESSAGE_DIR}/engine.proto \
94
96
                ${MESSAGE_DIR}/schema.proto \
95
97
                ${MESSAGE_DIR}/table.proto \
97
99
                ${MESSAGE_DIR}/transaction.proto
98
100
 
99
101
BUILT_SOURCES += \
100
 
                ${MESSAGE_DIR}/event.pb.h \
101
102
                ${MESSAGE_DIR}/engine.pb.h \
102
103
                ${MESSAGE_DIR}/schema.pb.h \
103
104
                ${MESSAGE_DIR}/table.pb.h \
105
106
                ${MESSAGE_DIR}/transaction.pb.h
106
107
 
107
108
CLEANFILES += \
108
 
            ${MESSAGE_DIR}/event.pb.h \
109
 
            ${MESSAGE_DIR}/event.pb.cc \
110
109
            ${MESSAGE_DIR}/engine.pb.h \
111
110
            ${MESSAGE_DIR}/engine.pb.cc \
112
111
            ${MESSAGE_DIR}/schema.pb.h \