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 |
||
28.1.2
by Monty Taylor
First stab at back porting libtool convenience lib patch from telco-6.2 |
16 |
|
264.1.3
by Monty Taylor
Removed libmysyslt.la, made mysys a noinst_ and made everything use it. It's |
17 |
noinst_LTLIBRARIES = libmysys.la |
28.1.3
by Monty Taylor
Fixed patch application so that the silly thing compiles. :) |
18 |
|
685.1.3
by Monty Taylor
Turned off stdinc - and then fixed the carnage. |
19 |
mysysincludedir= ${includedir}/mysys |
20 |
dist_mysysinclude_HEADERS= \ |
|
685.1.8
by Monty Taylor
Added missing things to Makefiles for distcheck. |
21 |
definitions.h \
|
685.1.3
by Monty Taylor
Turned off stdinc - and then fixed the carnage. |
22 |
iocache.h \
|
23 |
my_alloc.h \
|
|
24 |
my_getopt.h \
|
|
25 |
my_pthread.h \
|
|
26 |
my_sys.h \
|
|
27 |
typelib.h |
|
212.5.13
by Monty Taylor
Moved my_sys/my_pthread/my_nosys and mysys_err to mysys. |
28 |
|
685.1.3
by Monty Taylor
Turned off stdinc - and then fixed the carnage. |
29 |
noinst_HEADERS= \ |
30 |
aio_result.h \
|
|
31 |
base64.h \
|
|
32 |
drizzle_time.h \
|
|
33 |
hash.h \
|
|
34 |
my_bit.h \
|
|
35 |
my_bitmap.h \
|
|
36 |
my_dir.h \
|
|
37 |
my_static.h \
|
|
38 |
my_time.h \
|
|
39 |
my_tree.h \
|
|
40 |
mysys_err.h \
|
|
41 |
mysys_priv.h \
|
|
42 |
sha1.h \
|
|
43 |
thr_lock.h |
|
212.5.3
by Monty Taylor
Moved base64.h to mysys. |
44 |
|
236.1.56
by Monty Taylor
Made build of thr_mutex.c conditional on --with-fast-mutexes, since that's |
45 |
if BUILD_FAST_MUTEX
|
685.1.3
by Monty Taylor
Turned off stdinc - and then fixed the carnage. |
46 |
thr_mutex_source= thr_mutex.cc |
236.1.56
by Monty Taylor
Made build of thr_mutex.c conditional on --with-fast-mutexes, since that's |
47 |
endif
|
48 |
||
685.1.3
by Monty Taylor
Turned off stdinc - and then fixed the carnage. |
49 |
libmysys_la_SOURCES= \ |
50 |
array.cc \
|
|
51 |
base64.cc \
|
|
52 |
charset-def.cc \
|
|
53 |
charset.cc \
|
|
54 |
checksum.cc \
|
|
55 |
default.cc \
|
|
56 |
default_modify.cc \
|
|
57 |
errors.cc \
|
|
58 |
hash.cc \
|
|
59 |
mf_arr_appstr.cc \
|
|
60 |
mf_cache.cc \
|
|
61 |
mf_dirname.cc \
|
|
62 |
mf_fn_ext.cc \
|
|
63 |
mf_format.cc \
|
|
64 |
mf_getdate.cc \
|
|
65 |
mf_iocache.cc \
|
|
66 |
mf_iocache2.cc \
|
|
67 |
mf_loadpath.cc \
|
|
68 |
mf_pack.cc \
|
|
69 |
mf_qsort.cc \
|
|
70 |
mf_qsort2.cc \
|
|
71 |
mf_radix.cc \
|
|
72 |
mf_same.cc \
|
|
73 |
mf_sort.cc \
|
|
74 |
mf_tempfile.cc \
|
|
75 |
mf_wcomp.cc \
|
|
76 |
mulalloc.cc \
|
|
77 |
my_access.cc \
|
|
78 |
my_alloc.cc \
|
|
79 |
my_bit.cc \
|
|
80 |
my_bitmap.cc \
|
|
81 |
my_copy.cc \
|
|
82 |
my_create.cc \
|
|
83 |
my_delete.cc \
|
|
84 |
my_dup.cc \
|
|
85 |
my_error.cc \
|
|
86 |
my_file.cc \
|
|
87 |
my_filename.cc \
|
|
88 |
my_getopt.cc \
|
|
89 |
my_getsystime.cc \
|
|
90 |
my_init.cc \
|
|
91 |
my_lib.cc \
|
|
92 |
my_open.cc \
|
|
93 |
my_read.cc \
|
|
94 |
my_redel.cc \
|
|
95 |
my_rename.cc \
|
|
96 |
my_static.cc \
|
|
97 |
my_symlink.cc \
|
|
98 |
my_symlink2.cc \
|
|
99 |
my_sync.cc \
|
|
100 |
my_thr_init.cc \
|
|
101 |
my_time.cc \
|
|
102 |
my_write.cc \
|
|
103 |
ptr_cmp.cc \
|
|
104 |
sha1.cc \
|
|
105 |
thr_lock.cc \
|
|
106 |
tree.cc \
|
|
107 |
typelib.cc \
|
|
108 |
${thr_mutex_source} |
|
264.1.3
by Monty Taylor
Removed libmysyslt.la, made mysys a noinst_ and made everything use it. It's |
109 |
|
1
by brian
clean slate |
110 |