~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/Makefile.am

  • Committer: Monty Taylor
  • Date: 2008-11-07 00:35:38 UTC
  • mto: (575.1.8 devel)
  • mto: This revision was merged to the branch mainline in revision 579.
  • Revision ID: monty@inaugust.com-20081107003538-x48mj66gkbrdjcuc
Made mysys and mystrings c++. Fixed the resulting bugs the compiler found.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
                        t_ctype.h
26
26
 
27
27
 
28
 
# IFF the don't exist on
29
 
# the target system. This helps prevent empty object file problems.
30
 
libmystrings_la_LIBADD = $(LTLIBOBJS)
31
 
libmystrings_la_SOURCES =       strxmov.c bmove_upp.c \
32
 
                                strfill.c is_prefix.c \
33
 
                                strmake.c longlong2str.c \
34
 
                                my_strtoll10.c \
35
 
                                bchange.c int2str.c str2int.c \
36
 
                                llstr.c \
37
 
                                stpcpy.c \
38
 
                                stpncpy.c \
39
 
                                ctype.c ctype-simple.c ctype-mb.c \
40
 
                                ctype-utf8.c \
41
 
                                ctype-uca.c ctype-bin.c \
42
 
                                decimal.c ctype-extra.c str_alloc.c \
43
 
                                dtoa.c 
 
28
libmystrings_la_SOURCES =       strxmov.cc bmove_upp.cc \
 
29
                                strfill.cc is_prefix.cc \
 
30
                                strmake.cc longlong2str.cc \
 
31
                                my_strtoll10.cc \
 
32
                                bchange.cc int2str.cc str2int.cc \
 
33
                                llstr.cc \
 
34
                                stpcpy.cc \
 
35
                                stpncpy.cc \
 
36
                                ctype.cc ctype-simple.cc ctype-mb.cc \
 
37
                                ctype-utf8.cc \
 
38
                                ctype-uca.cc ctype-bin.cc \
 
39
                                decimal.cc ctype-extra.cc str_alloc.cc \
 
40
                                dtoa.cc 
44
41