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 |
||
16 |
MYSQLDATAdir = $(localstatedir) |
|
17 |
MYSQLSHAREdir = $(pkgdatadir) |
|
18 |
MYSQLBASEdir= $(prefix) |
|
28.1.2
by Monty Taylor
First stab at back porting libtool convenience lib patch from telco-6.2 |
19 |
|
264.1.3
by Monty Taylor
Removed libmysyslt.la, made mysys a noinst_ and made everything use it. It's |
20 |
noinst_LTLIBRARIES = libmysys.la |
28.1.3
by Monty Taylor
Fixed patch application so that the silly thing compiles. :) |
21 |
|
236.1.38
by Monty Taylor
Fixed header install problem. The now install to the right places. |
22 |
mysysincludedir = ${includedir}/mysys |
481.2.1
by Monty Taylor
Split iocache definitions into their own header. |
23 |
dist_mysysinclude_HEADERS = iocache.h \ |
24 |
my_alloc.h \
|
|
236.1.38
by Monty Taylor
Fixed header install problem. The now install to the right places. |
25 |
my_getopt.h \
|
26 |
my_list.h \
|
|
27 |
my_sys.h \
|
|
28 |
my_pthread.h \
|
|
29 |
typelib.h |
|
212.5.13
by Monty Taylor
Moved my_sys/my_pthread/my_nosys and mysys_err to mysys. |
30 |
|
212.5.3
by Monty Taylor
Moved base64.h to mysys. |
31 |
noinst_HEADERS = mysys_priv.h \ |
212.5.28
by Monty Taylor
Moved my_bit and my_list |
32 |
my_bit.h \
|
212.5.18
by Monty Taylor
Moved m_ctype, m_string and my_bitmap. Removed t_ctype. |
33 |
my_bitmap.h \
|
212.5.38
by Monty Taylor
Moved my_dir (and removed references to a lot of places) |
34 |
my_dir.h \
|
212.5.3
by Monty Taylor
Moved base64.h to mysys. |
35 |
my_static.h \
|
212.5.27
by Monty Taylor
Moved my_handler to mysys. |
36 |
my_handler.h \
|
212.5.3
by Monty Taylor
Moved base64.h to mysys. |
37 |
my_handler_errors.h \
|
212.5.13
by Monty Taylor
Moved my_sys/my_pthread/my_nosys and mysys_err to mysys. |
38 |
my_nosys.h \
|
39 |
mysys_err.h \
|
|
212.5.15
by Monty Taylor
Moved my_tree. |
40 |
my_tree.h \
|
212.5.17
by Monty Taylor
Moved queues and hash. |
41 |
queues.h \
|
42 |
hash.h \
|
|
212.5.6
by Monty Taylor
Moved sha1.h and sha2.h to mysys. |
43 |
sha1.h \
|
212.5.7
by Monty Taylor
Move thr_*h to mysys. |
44 |
thr_alarm.h \
|
383.1.17
by Brian Aker
Cleanup of time code (moved into mysys) |
45 |
my_time.h \
|
46 |
drizzle_time.h \
|
|
212.5.7
by Monty Taylor
Move thr_*h to mysys. |
47 |
thr_lock.h \
|
481.2.2
by Monty Taylor
Split out aio_result.h into its own header. |
48 |
base64.h \
|
49 |
aio_result.h |
|
212.5.3
by Monty Taylor
Moved base64.h to mysys. |
50 |
|
236.1.56
by Monty Taylor
Made build of thr_mutex.c conditional on --with-fast-mutexes, since that's |
51 |
if BUILD_FAST_MUTEX
|
52 |
thr_mutex_source=thr_mutex.c |
|
53 |
endif
|
|
236.1.59
by Monty Taylor
Turn thr_rwlock.c into a conditionally built source file. |
54 |
if BUILD_THR_RWLOCK
|
55 |
thr_rwlock_source=thr_rwlock.c |
|
56 |
endif
|
|
236.1.56
by Monty Taylor
Made build of thr_mutex.c conditional on --with-fast-mutexes, since that's |
57 |
|
264.1.3
by Monty Taylor
Removed libmysyslt.la, made mysys a noinst_ and made everything use it. It's |
58 |
libmysys_la_SOURCES = my_init.c my_getwd.c mf_getdate.c \ |
1
by brian
clean slate |
59 |
mf_path.c mf_loadpath.c my_file.c \
|
60 |
my_open.c my_create.c my_dup.c my_seek.c my_read.c \
|
|
236.1.53
by Monty Taylor
Made getpagesize an automake compat LIBOBJ. |
61 |
my_write.c \
|
1
by brian
clean slate |
62 |
mf_iocache.c mf_iocache2.c mf_cache.c mf_tempfile.c \
|
77.1.7
by Monty Taylor
Heap builds clean. |
63 |
mf_tempdir.c my_handler.c \
|
1
by brian
clean slate |
64 |
my_malloc.c my_realloc.c my_once.c mulalloc.c \
|
236.1.52
by Monty Taylor
Removed my_new - I am not supporting C++ compilers without new and delete. |
65 |
my_alloc.c \
|
1
by brian
clean slate |
66 |
my_fopen.c my_fstream.c my_getsystime.c \
|
266.6.13
by Andy Lester
renamed my_div.c to my_filename.c to match the function within |
67 |
my_error.c errors.c my_filename.c my_messnc.c \
|
1
by brian
clean slate |
68 |
mf_format.c mf_same.c mf_dirname.c mf_fn_ext.c \
|
69 |
my_symlink.c my_symlink2.c \
|
|
266.6.11
by Andy Lester
Removed strip_sp(), both C and C++ versions |
70 |
mf_pack.c mf_unixpath.c mf_arr_appstr.c \
|
266.6.15
by Andy Lester
Removed mf_wfile.c and the unused wildcard functions within |
71 |
mf_wcomp.c my_gethwaddr.c \
|
1
by brian
clean slate |
72 |
mf_qsort.c mf_qsort2.c mf_sort.c \
|
266.6.14
by Andy Lester
Removed functions my_clock, my_getncpus and my_memmem |
73 |
ptr_cmp.c mf_radix.c queues.c \
|
373.1.8
by Monty Taylor
Removed DYNAMIC_STRING. |
74 |
tree.c list.c hash.c array.c typelib.c \
|
266.6.12
by Andy Lester
removed my_append() |
75 |
my_copy.c my_lib.c \
|
1
by brian
clean slate |
76 |
my_delete.c my_rename.c my_redel.c \
|
236.1.55
by Monty Taylor
Removed my_lockmem... we never actually use it. |
77 |
my_quick.c my_static.c \
|
383.1.17
by Brian Aker
Cleanup of time code (moved into mysys) |
78 |
my_time.c \
|
1
by brian
clean slate |
79 |
my_sync.c my_getopt.c my_mkdir.c \
|
80 |
default_modify.c default.c \
|
|
383.1.37
by Monty Taylor
Removed some mysys from net_serv.c. |
81 |
checksum.c \
|
1
by brian
clean slate |
82 |
my_sleep.c \
|
139.1.1
by Stewart Smith
Move MD5() into a UDF |
83 |
charset.c charset-def.c my_bitmap.c my_bit.c \
|
1
by brian
clean slate |
84 |
sha1.c \
|
28.1.3
by Monty Taylor
Fixed patch application so that the silly thing compiles. :) |
85 |
my_access.c base64.c \
|
86 |
thr_alarm.c thr_lock.c my_thr_init.c \
|
|
236.1.59
by Monty Taylor
Turn thr_rwlock.c into a conditionally built source file. |
87 |
${thr_mutex_source} ${thr_rwlock_source} |
264.1.3
by Monty Taylor
Removed libmysyslt.la, made mysys a noinst_ and made everything use it. It's |
88 |
|
1
by brian
clean slate |
89 |
DEFS = -DDEFAULT_BASEDIR=\"$(prefix)\" \ |
90 |
-DDATADIR="\"$(MYSQLDATAdir)\"" \ |
|
91 |
-DDEFAULT_CHARSET_HOME="\"$(MYSQLBASEdir)\"" \ |
|
92 |
-DSHAREDIR="\"$(MYSQLSHAREdir)\"" \ |
|
319.1.1
by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_ |
93 |
-DDEFAULT_HOME_ENV=DRIZZLE_HOME \ |
94 |
-DDEFAULT_GROUP_SUFFIX_ENV=DRIZZLE_GROUP_SUFFIX \ |
|
1
by brian
clean slate |
95 |
-DDEFAULT_SYSCONFDIR="\"$(sysconfdir)\"" \ |
96 |
@DEFS@ |
|
97 |