~drizzle-trunk/drizzle/development

1931.2.1 by David Shrewsbury
Move transaction_reader from drizzled/message to transaction_log plugin; also pulled transaction_reader file operations out into separate class.
1
# vim:ft=automake
2
# Copyright (C) 2010 David Shrewsbury
3
# 
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; version 2 of the License.
7
# 
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
12
# 
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
16
17
18
if BUILD_TRANSACTION_LOG_PLUGIN
2239.8.2 by David Shrewsbury
Changed name of drizzle_trx_reader to drizzletrx.
19
bin_PROGRAMS += plugin/transaction_log/utilities/drizzletrx
1931.2.1 by David Shrewsbury
Move transaction_reader from drizzled/message to transaction_log plugin; also pulled transaction_reader file operations out into separate class.
20
endif
21
22
noinst_HEADERS += \
23
    plugin/transaction_log/utilities/transaction_file_reader.h \
1802.17.12 by Joseph Daly
fix up transaction reader to work with inno replication log
24
    plugin/transaction_log/utilities/transaction_manager.h \
25
    plugin/transaction_log/utilities/transaction_log_connection.h
1931.2.1 by David Shrewsbury
Move transaction_reader from drizzled/message to transaction_log plugin; also pulled transaction_reader file operations out into separate class.
26
2239.8.2 by David Shrewsbury
Changed name of drizzle_trx_reader to drizzletrx.
27
plugin_transaction_log_utilities_drizzletrx_SOURCES = \
1931.2.1 by David Shrewsbury
Move transaction_reader from drizzled/message to transaction_log plugin; also pulled transaction_reader file operations out into separate class.
28
    plugin/transaction_log/utilities/transaction_reader.cc \
29
    plugin/transaction_log/utilities/transaction_file_reader.cc \
1802.17.12 by Joseph Daly
fix up transaction reader to work with inno replication log
30
    plugin/transaction_log/utilities/transaction_manager.cc \
31
    plugin/transaction_log/utilities/transaction_log_connection.cc
1931.2.1 by David Shrewsbury
Move transaction_reader from drizzled/message to transaction_log plugin; also pulled transaction_reader file operations out into separate class.
32
2239.8.2 by David Shrewsbury
Changed name of drizzle_trx_reader to drizzletrx.
33
plugin_transaction_log_utilities_drizzletrx_LDADD = \
2244.1.1 by Monty Taylor
Split libdrizzle into 1.0 and 2.0. Applied the C++ changes to 2.0 branch.
34
    drizzled/message/libdrizzledmessage.la \
35
    drizzled/internal/libinternal.la \
36
    drizzled/algorithm/libhash.la \
37
    drizzled/util/libutil.la \
2259.1.1 by Monty Taylor
Finish the transition to libdrizzle-2.0 libs (after discussion with derks
38
    libdrizzle-2.0/libdrizzle/libdrizzle-2.0.la \
1931.2.1 by David Shrewsbury
Move transaction_reader from drizzled/message to transaction_log plugin; also pulled transaction_reader file operations out into separate class.
39
    ${LIBPROTOBUF} \
40
    ${LIBUUID} \
41
    ${LTLIBINTL} \
42
    $(GCOV_LIBS)
43
2258.1.3 by David Shrewsbury
Changed name of drizzle_trx_reader to drizzletrx.
44
plugin_transaction_log_utilities_drizzletrx_CXXFLAGS = ${AM_CXXFLAGS} ${PROTOSKIP_WARNINGS} ${NO_WERROR} ${LIBDRIZZLE_CPPFLAGS}