~drizzle-developers/ubuntu/karmic/drizzle/ppa

« back to all changes in this revision

Viewing changes to plugin/transaction_log/plugin.am

  • Committer: Monty Taylor
  • Date: 2010-11-24 18:44:57 UTC
  • mfrom: (1308.1.31 trunk)
  • Revision ID: mordred@inaugust.com-20101124184457-qd6jvoe2wgnvl3yq
Tags: 2010.11.04-0ubuntu1~karmic1
* New upstream release.
* Turn off -Werror for packaging builds. (Closes: #602662)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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}