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 \
|
|
383.1.7
by Brian Aker
Remove homebrew xml parser. |
22 |
m_string.h |
212.5.18
by Monty Taylor
Moved m_ctype, m_string and my_bitmap. Removed t_ctype. |
23 |
|
312.1.14
by Monty Taylor
Fixed bug#257694 - added various files to EXTRA_DIST and noinst_HEADERS to make make distcheck (and with-it out-of-tree builds) work. |
24 |
noinst_HEADERS = my_uctype.h \ |
25 |
t_ctype.h |
|
212.5.18
by Monty Taylor
Moved m_ctype, m_string and my_bitmap. Removed t_ctype. |
26 |
|
236.1.62
by Monty Taylor
Put in automake build tests... |
27 |
|
575.3.1
by Monty Taylor
Made mysys and mystrings c++. Fixed the resulting bugs the compiler found. |
28 |
libmystrings_la_SOURCES = strxmov.cc bmove_upp.cc \ |
29 |
strfill.cc is_prefix.cc \
|
|
629.5.5
by Toru Maesaka
Fifth pass of replacing MySQL's strmake() with libc calls |
30 |
longlong2str.cc \
|
575.3.1
by Monty Taylor
Made mysys and mystrings c++. Fixed the resulting bugs the compiler found. |
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.1.17
by Monty Taylor
Moved test programs in strings to strings/tests, like mysys. |
41 |