~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
19
noinst_PROGRAMS += plugin/transaction_log/utilities/transaction_reader
20
endif
21
22
noinst_HEADERS += \
23
    plugin/transaction_log/utilities/transaction_file_reader.h \
24
    plugin/transaction_log/utilities/transaction_manager.h
25
26
plugin_transaction_log_utilities_transaction_reader_SOURCES = \
27
    plugin/transaction_log/utilities/transaction_reader.cc \
28
    plugin/transaction_log/utilities/transaction_file_reader.cc \
29
    plugin/transaction_log/utilities/transaction_manager.cc
30
31
plugin_transaction_log_utilities_transaction_reader_LDADD = \
32
    $(top_builddir)/drizzled/message/libdrizzledmessage.la \
33
    ${top_builddir}/drizzled/internal/libinternal.la \
34
    ${top_builddir}/drizzled/algorithm/libhash.la \
35
    ${top_builddir}/drizzled/util/libutil.la \
36
    ${LIBPROTOBUF} \
37
    ${LIBUUID} \
38
    ${LTLIBINTL} \
39
    $(GCOV_LIBS)
40
41
plugin_transaction_log_utilities_transaction_reader_CXXFLAGS = ${AM_CXXFLAGS} ${PROTOSKIP_WARNINGS} ${NO_WERROR}