~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/Makefile.am

  • Committer: Monty Taylor
  • Date: 2008-10-23 00:05:28 UTC
  • Revision ID: monty@inaugust.com-20081023000528-grdvrd8c4058nutm
Moved my_handler to myisam, which is where it actually belongs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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)
 
19
 
 
20
noinst_LTLIBRARIES =    libmysys.la
 
21
 
 
22
mysysincludedir = ${includedir}/mysys
 
23
dist_mysysinclude_HEADERS =     iocache.h \
 
24
                                my_alloc.h \
 
25
                                my_getopt.h \
 
26
                                my_list.h \
 
27
                                my_sys.h \
 
28
                                my_pthread.h \
 
29
                                typelib.h
 
30
 
 
31
noinst_HEADERS =        mysys_priv.h \
 
32
                        my_bit.h \
 
33
                        my_bitmap.h \
 
34
                        my_dir.h \
 
35
                        my_static.h \
 
36
                        my_nosys.h \
 
37
                        mysys_err.h \
 
38
                        my_tree.h \
 
39
                        queues.h \
 
40
                        hash.h \
 
41
                        sha1.h \
 
42
                        thr_alarm.h \
 
43
                        my_time.h \
 
44
                        drizzle_time.h \
 
45
                        thr_lock.h \
 
46
                        base64.h \
 
47
                        aio_result.h
 
48
 
 
49
if BUILD_FAST_MUTEX
 
50
thr_mutex_source=thr_mutex.c
 
51
endif
 
52
if BUILD_THR_RWLOCK
 
53
thr_rwlock_source=thr_rwlock.c
 
54
endif
 
55
 
 
56
libmysys_la_SOURCES = my_init.c my_getwd.c mf_getdate.c \
 
57
                        mf_path.c mf_loadpath.c my_file.c \
 
58
                        my_open.c my_create.c my_dup.c my_seek.c my_read.c \
 
59
                        my_write.c \
 
60
                        mf_iocache.c mf_iocache2.c mf_cache.c mf_tempfile.c \
 
61
                        mf_tempdir.c \
 
62
                        my_malloc.c my_realloc.c my_once.c mulalloc.c \
 
63
                        my_alloc.c \
 
64
                        my_fopen.c my_fstream.c my_getsystime.c \
 
65
                        my_error.c errors.c my_filename.c my_messnc.c \
 
66
                        mf_format.c mf_same.c mf_dirname.c mf_fn_ext.c \
 
67
                        my_symlink.c my_symlink2.c \
 
68
                        mf_pack.c mf_unixpath.c mf_arr_appstr.c \
 
69
                        mf_wcomp.c my_gethwaddr.c \
 
70
                        mf_qsort.c mf_qsort2.c mf_sort.c \
 
71
                        ptr_cmp.c mf_radix.c queues.c \
 
72
                        tree.c list.c hash.c array.c typelib.c \
 
73
                        my_copy.c my_lib.c \
 
74
                        my_delete.c my_rename.c my_redel.c \
 
75
                        my_quick.c my_static.c \
 
76
                        my_time.c \
 
77
                        my_sync.c my_getopt.c my_mkdir.c \
 
78
                        default_modify.c default.c \
 
79
                        checksum.c \
 
80
                        my_sleep.c \
 
81
                        charset.c charset-def.c my_bitmap.c my_bit.c \
 
82
                        sha1.c \
 
83
                        my_access.c base64.c \
 
84
                        thr_alarm.c thr_lock.c my_thr_init.c \
 
85
                        ${thr_mutex_source} ${thr_rwlock_source}
 
86
 
 
87
DEFS =                  -DDEFAULT_BASEDIR=\"$(prefix)\" \
 
88
                        -DDATADIR="\"$(MYSQLDATAdir)\"" \
 
89
                        -DDEFAULT_CHARSET_HOME="\"$(MYSQLBASEdir)\"" \
 
90
                        -DSHAREDIR="\"$(MYSQLSHAREdir)\"" \
 
91
                        -DDEFAULT_HOME_ENV=DRIZZLE_HOME \
 
92
                        -DDEFAULT_GROUP_SUFFIX_ENV=DRIZZLE_GROUP_SUFFIX \
 
93
                        -DDEFAULT_SYSCONFDIR="\"$(sysconfdir)\"" \
 
94
                        @DEFS@
 
95