~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/Makefile.am

  • Committer: mozo at mozo
  • Date: 2008-11-03 07:01:58 UTC
  • mto: (574.1.1 devel)
  • mto: This revision was merged to the branch mainline in revision 575.
  • Revision ID: mozo@mozo.jp-20081103070158-f0y528d34bujnf5u
Fix build and indents

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
noinst_LTLIBRARIES =    libfunctions.la
17
17
 
 
18
AM_CPPFLAGS = ${GLOBAL_CPPFLAGS} ${PROTOBUF_CPPFLAGS}
 
19
 
18
20
libfunctions_la_SOURCES = abs.cc \
19
 
                          acos.cc \
20
 
                          ascii.cc \
21
 
                          asin.cc \
22
 
                          atan.cc \
23
 
                          additive_op.cc \
24
 
                          benchmark.cc \
25
 
                          bit.cc \
26
 
                          bit_count.cc \
27
 
                          char_length.cc \
28
 
                          ceiling.cc \
29
 
                          connection_id.cc \
30
 
                          coercibility.cc \
31
 
                          cos.cc \
32
 
                          decimal_typecast.cc \
33
 
                          divide.cc \
34
 
                          exp.cc \
35
 
                          get_user_var.cc \
36
 
                          get_variable.cc \
37
 
                          field.cc \
38
 
                          find_in_set.cc \
39
 
                          floor.cc \
40
 
                          found_rows.cc \
41
 
                          func.cc \
42
 
                          get_system_var.cc \
43
 
                          get_variable.cc \
44
 
                          int.cc \
45
 
                          integer.cc \
46
 
                          int_divide.cc \
47
 
                          int_val.cc \
48
 
                          last_insert.cc \
49
 
                          length.cc \
50
 
                          ln.cc \
51
 
                          locate.cc \
52
 
                          lock.cc \
53
 
                          log.cc \
54
 
                          master_pos_wait.cc \
55
 
                          min_max.cc \
56
 
                          minus.cc \
57
 
                          mod.cc \
58
 
                          multiply.cc \
59
 
                          neg.cc \
60
 
                          num1.cc \
61
 
                          numhybrid.cc \
62
 
                          num_op.cc \
63
 
                          ord.cc \
64
 
                          plus.cc \
65
 
                          pow.cc \
66
 
                          rand.cc \
67
 
                          real.cc \
68
 
                          round.cc \
69
 
                          row_count.cc \
70
 
                          set_user_var.cc \
71
 
                          shift.cc \
72
 
                          sign.cc \
73
 
                          signed.cc \
74
 
                          sin.cc \
75
 
                          sqrt.cc \
76
 
                          tan.cc \
77
 
                          update_hash.cc \
78
 
                          units.cc \
79
 
                          unsigned.cc \
80
 
                          user_var_as_out_param.cc
 
21
                  acos.cc \
 
22
                  ascii.cc \
 
23
                  asin.cc \
 
24
                  atan.cc \
 
25
                  additive_op.cc \
 
26
                  benchmark.cc \
 
27
                  bit.cc \
 
28
                  bit_count.cc \
 
29
                  char_length.cc \
 
30
                  ceiling.cc \
 
31
                  connection_id.cc \
 
32
                  coercibility.cc \
 
33
                  cos.cc \
 
34
                  decimal_typecast.cc \
 
35
                  divide.cc \
 
36
                  exp.cc \
 
37
                  get_user_var.cc \
 
38
                  get_variable.cc \
 
39
                  field.cc \
 
40
                  find_in_set.cc \
 
41
                  floor.cc \
 
42
                  found_rows.cc \
 
43
                  func.cc \
 
44
                  get_system_var.cc \
 
45
                  get_variable.cc \
 
46
                  int.cc \
 
47
                  integer.cc \
 
48
                  int_divide.cc \
 
49
                  int_val.cc \
 
50
                  last_insert.cc \
 
51
                  length.cc \
 
52
                  ln.cc \
 
53
                  locate.cc \
 
54
                  lock.cc \
 
55
                  log.cc \
 
56
                  master_pos_wait.cc \
 
57
                  min_max.cc \
 
58
                  minus.cc \
 
59
                  mod.cc \
 
60
                  multiply.cc \
 
61
                  neg.cc \
 
62
                  num1.cc \
 
63
                  numhybrid.cc \
 
64
                  num_op.cc \
 
65
                  ord.cc \
 
66
                  plus.cc \
 
67
                  pow.cc \
 
68
                  rand.cc \
 
69
                  real.cc \
 
70
                  round.cc \
 
71
                  row_count.cc \
 
72
                  set_user_var.cc \
 
73
                  shift.cc \
 
74
                  sign.cc \
 
75
                  signed.cc \
 
76
                  sin.cc \
 
77
                  sqrt.cc \
 
78
                  tan.cc \
 
79
                  update_hash.cc \
 
80
                  units.cc \
 
81
                  unsigned.cc \
 
82
                  user_var_as_out_param.cc
81
83
 
82
84
noinst_HEADERS = abs.h \
83
85
                 acos.h \
105
107
                 func.h \
106
108
                 get_system_var.h \
107
109
                 get_user_var.h \
108
 
                 int.h \
109
 
                 integer.h \
110
 
                 int_divide.h \
111
 
                 int_val.h \
 
110
                 int.h \
 
111
                 integer.h \
 
112
                 int_divide.h \
 
113
                 int_val.h \
112
114
                 last_insert.h \
113
115
                 length.h \
114
116
                 ln.h \
122
124
                 multiply.h \
123
125
                 neg.h \
124
126
                 num1.h \
125
 
                 numhybrid.h \
126
 
                 num_op.h \
127
 
                 ord.h \
128
 
                 plus.h \
129
 
                 pow.h \
 
127
                 numhybrid.h \
 
128
                 num_op.h \
 
129
                 ord.h \
 
130
                 plus.h \
 
131
                 pow.h \
130
132
                 real.h \
131
133
                 rollup_const.h \
132
134
                 round.h \