~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/Makefile.am

  • Committer: Jay Pipes
  • Date: 2008-09-09 20:10:57 UTC
  • mto: (383.2.4 fix-failing-tests)
  • mto: This revision was merged to the branch mainline in revision 386.
  • Revision ID: jay@mysql.com-20080909201057-3qkgcxqaps2s58y9
Re-enabled a number of passing tests from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
                        t_ctype.h
26
26
 
27
27
 
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 
 
28
# LTLIBOBJS contains stpcpy stpncpy
 
29
# IFF the don't exist on
 
30
# the target system. This helps prevent empty object file problems.
 
31
libmystrings_la_LIBADD = $(LTLIBOBJS)
 
32
libmystrings_la_SOURCES =       strxmov.c bmove_upp.c \
 
33
                                strfill.c is_prefix.c \
 
34
                                strmake.c longlong2str.c \
 
35
                                my_strtoll10.c \
 
36
                                bchange.c strxnmov.c int2str.c str2int.c \
 
37
                                llstr.c \
 
38
                                ctype.c ctype-simple.c ctype-mb.c \
 
39
                                ctype-czech.c \
 
40
                                ctype-euc_kr.c ctype-gb2312.c \
 
41
                                ctype-gbk.c ctype-sjis.c ctype-tis620.c \
 
42
                                ctype-utf8.c ctype-ucs2.c \
 
43
                                ctype-uca.c ctype-bin.c \
 
44
                                ctype-latin1.c \
 
45
                                decimal.c ctype-extra.c str_alloc.c \
 
46
                                dtoa.c 
41
47