1
by brian
clean slate |
1 |
# Copyright (C) 2000-2006 MySQL AB
|
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
15 |
||
266.4.3
by Monty Taylor
Removed mystringslt conv lib and replaced it with a noinst lib. |
16 |
noinst_LTLIBRARIES = libmystrings.la |
1
by brian
clean slate |
17 |
|
28.1.17
by Monty Taylor
Moved test programs in strings to strings/tests, like mysys. |
18 |
|
236.1.38
by Monty Taylor
Fixed header install problem. The now install to the right places. |
19 |
mystringsincludedir = ${includedir}/mystrings |
20 |
dist_mystringsinclude_HEADERS = decimal.h \ |
|
21 |
m_ctype.h \
|
|
22 |
m_string.h \
|
|
23 |
my_xml.h |
|
212.5.18
by Monty Taylor
Moved m_ctype, m_string and my_bitmap. Removed t_ctype. |
24 |
|
25 |
noinst_HEADERS = my_uctype.h |
|
26 |
||
236.1.62
by Monty Taylor
Put in automake build tests... |
27 |
|
266.1.16
by Monty Taylor
Ooops. Missed a rename in Makefile.am. |
28 |
# LTLIBOBJS contains strstr strtoll strtoull stpcpy stpncpy strnlen getpagesize
|
266.1.11
by Monty Taylor
Removed strlen altogether. Make strnlen conditional. |
29 |
# IFF the don't exist on
|
236.1.50
by Monty Taylor
Added automake conditional compilation of distributed system replacement functions. |
30 |
# the target system. This helps prevent empty object file problems.
|
266.4.3
by Monty Taylor
Removed mystringslt conv lib and replaced it with a noinst lib. |
31 |
libmystrings_la_LIBADD = $(LTLIBOBJS) |
266.6.2
by Andy Lester
removed strcont |
32 |
libmystrings_la_SOURCES = strxmov.c bmove_upp.c strappend.c \ |
266.1.14
by Monty Taylor
Removed strcend. |
33 |
strend.c strfill.c is_prefix.c \
|
266.1.16
by Monty Taylor
Ooops. Missed a rename in Makefile.am. |
34 |
strmake.c longlong2str.c \
|
266.4.1
by Monty Taylor
Removed assembler code and --enable-assembler. |
35 |
my_strtoll10.c bmove512.c \
|
28.1.17
by Monty Taylor
Moved test programs in strings to strings/tests, like mysys. |
36 |
bchange.c strxnmov.c int2str.c str2int.c \
|
266.1.11
by Monty Taylor
Removed strlen altogether. Make strnlen conditional. |
37 |
llstr.c \
|
236.1.63
by Monty Taylor
Backed up charsets automake change. |
38 |
ctype.c ctype-simple.c ctype-mb.c \
|
39 |
ctype-big5.c ctype-cp932.c ctype-czech.c \
|
|
40 |
ctype-eucjpms.c ctype-euc_kr.c ctype-gb2312.c \
|
|
41 |
ctype-gbk.c ctype-sjis.c ctype-tis620.c \
|
|
42 |
ctype-ujis.c ctype-utf8.c ctype-ucs2.c \
|
|
43 |
ctype-uca.c ctype-win1250ch.c ctype-bin.c \
|
|
44 |
ctype-latin1.c xml.c \
|
|
45 |
decimal.c ctype-extra.c str_alloc.c \
|
|
46 |
dtoa.c my_strchr.c |
|
28.1.17
by Monty Taylor
Moved test programs in strings to strings/tests, like mysys. |
47 |