~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/str/Makefile.am

  • Committer: Daniel Nichter
  • Date: 2011-10-23 16:01:37 UTC
  • mto: This revision was merged to the branch mainline in revision 2448.
  • Revision ID: daniel@percona.com-20111023160137-7ac3blgz8z4tf8za
Add Administration Getting Started and Logging.  Capitalize SQL clause keywords.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#  Copyright (C) 2008 Sun Microsystems
2
 
3
 
#  This program is free software; you can redistribute it and/or modify
4
 
#  it under the terms of the GNU General Public License as published by
5
 
#  the Free Software Foundation; version 2 of the License.
6
 
#
7
 
#  This program is distributed in the hope that it will be useful,
8
 
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
 
#  GNU General Public License for more details.
11
 
#
12
 
#  You should have received a copy of the GNU General Public License
13
 
#  along with this program; if not, write to the Free Software
14
 
#  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
15
 
 
16
 
noinst_LTLIBRARIES =    libstrfunc.la
17
 
 
18
 
AM_CPPFLAGS = ${GLOBAL_CPPFLAGS} ${PROTOBUF_CPPFLAGS}
19
 
 
20
 
libstrfunc_la_SOURCES = alloc_buffer.cc \
21
 
                 binary.cc \
22
 
                 char.cc \
23
 
                 charset.cc \
24
 
                 collation.cc \
25
 
                 concat.cc \
26
 
                 conv.cc \
27
 
                 conv_charset.cc \
28
 
                 database.cc \
29
 
                 elt.cc \
30
 
                 export_set.cc \
31
 
                 format.cc \
32
 
                 hex.cc \
33
 
                 insert.cc \
34
 
                 left.cc \
35
 
                 make_set.cc \
36
 
                 pad.cc \
37
 
                 quote.cc \
38
 
                 repeat.cc \
39
 
                 replace.cc \
40
 
                 reverse.cc \
41
 
                 right.cc \
42
 
                 set_collation.cc \
43
 
                 str_conv.cc \
44
 
                 strfunc.cc \
45
 
                 substr.cc \
46
 
                 sysconst.cc \
47
 
                 trim.cc \
48
 
                 user.cc \
49
 
                 uuid.cc \
50
 
                 weight_string.cc
51
 
 
52
 
functionsincludedir = ${includedir}/drizzled/functions/str
53
 
nobase_dist_functionsinclude_HEADERS = \
54
 
                alloc_buffer.h \
55
 
                binary.h \
56
 
                char.h \
57
 
                charset.h \
58
 
                collation.h \
59
 
                concat.h \
60
 
                conv.h \
61
 
                conv_charset.h \
62
 
                database.h \
63
 
                elt.h \
64
 
                export_set.h \
65
 
                format.h \
66
 
                hex.h \
67
 
                insert.h \
68
 
                left.h \
69
 
                make_set.h \
70
 
                pad.h \
71
 
                quote.h \
72
 
                repeat.h \
73
 
                replace.h \
74
 
                reverse.h \
75
 
                right.h \
76
 
                set_collation.h \
77
 
                str_conv.h \
78
 
                strfunc.h \
79
 
                substr.h \
80
 
                sysconst.h \
81
 
                trim.h \
82
 
                user.h \
83
 
                uuid.h \
84
 
                weight_string.h
85
 
 
86
 
DEFS= -DDRIZZLE_SERVER @DEFS@