~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/Makefile.am

  • Committer: Monty Taylor
  • Date: 2008-08-02 18:45:35 UTC
  • mto: This revision was merged to the branch mainline in revision 261.
  • Revision ID: monty@inaugust.com-20080802184535-p4ze46mgiock6tzi
Backed up charsets automake change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
noinst_HEADERS =        my_uctype.h
55
55
 
56
56
 
57
 
if BUILD_ARMSCII8
58
 
build_armscii8=
59
 
endif
60
 
if BUILD_BIG5
61
 
build_big5=ctype-big5.c
62
 
endif
63
 
if BUILD_CP1250
64
 
build_cp1250=ctype-win1250ch.c
65
 
endif
66
 
if BUILD_CP32
67
 
build_cp932=ctype-cp932.c
68
 
endif
69
 
if BUILD_EUCJPMS
70
 
build_eucjpms=ctype-eucjpms.c
71
 
endif
72
 
if BUILD_EUCKR
73
 
build_euckr=ctype-euc_kr.c
74
 
endif
75
 
if BUILD_GB2312
76
 
build_gb2312=ctype-gb2312.c
77
 
endif
78
 
if BUILD_GBK
79
 
build_gbk=ctype-gbk.c
80
 
endif
81
 
if BUILD_LATIN2
82
 
build_latin2=ctype-czech.c
83
 
endif
84
 
if BUILD_SJIS
85
 
build_sjis=ctype-sjis.c
86
 
endif
87
 
if BUILD_TIS620
88
 
build_tis620=ctype-tis620.c
89
 
endif
90
 
if BUILD_UCS2
91
 
build_ucs2=
92
 
endif
93
 
if BUILD_UJIS
94
 
build_ujis=ctype-ujis.c
95
 
endif
96
 
 
97
57
# C files common to all three cases are included directly below, so that
98
58
# ASRCS and CSRCS can be smaller
99
59
# LIBOBJS contains strstr strtoll strtoull strmov IFF the don't exist on
101
61
libmystringslt_la_LIBADD = $(LIBOBJS)
102
62
libmystringslt_la_SOURCES =     $(ASRCS) $(CSRCS) bmove512.c \
103
63
                                bchange.c strxnmov.c int2str.c str2int.c \
104
 
                                llstr.c strnlen.c \
105
 
                                ctype.c ctype-simple.c ctype-mb.c \
106
 
                                ${build_big5} ${build_cp932} ${build_latin2} \
107
 
                                ${build_eucjpms} ${build_euckr} \
108
 
                                ${build_gb2312} \
109
 
                                ${build_gbk} ${build_sjis} ${build_tis620} \
110
 
                                ${build_ujis} ctype-utf8.c ctype-ucs2.c \
111
 
                                ctype-uca.c ${build_cp1250} ctype-bin.c \
112
 
                                ctype-latin1.c xml.c \
113
 
                                decimal.c ctype-extra.c str_alloc.c \
114
 
                                dtoa.c my_strchr.c
 
64
                                llstr.c strnlen.c \
 
65
                                ctype.c ctype-simple.c ctype-mb.c \
 
66
                                ctype-big5.c ctype-cp932.c ctype-czech.c \
 
67
                                ctype-eucjpms.c ctype-euc_kr.c ctype-gb2312.c \
 
68
                                ctype-gbk.c ctype-sjis.c ctype-tis620.c \
 
69
                                ctype-ujis.c ctype-utf8.c ctype-ucs2.c \
 
70
                                ctype-uca.c ctype-win1250ch.c ctype-bin.c \
 
71
                                ctype-latin1.c xml.c \
 
72
                                decimal.c ctype-extra.c str_alloc.c \
 
73
                                dtoa.c my_strchr.c
115
74
 
116
75
# Default charset definitions
117
76
EXTRA_DIST =    ctype-big5.c ctype-cp932.c ctype-czech.c ctype-eucjpms.c \