~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libdrizzle/Makefile.am

  • Committer: Stewart Smith
  • Author(s): Marko Mäkelä
  • Date: 2010-12-20 03:21:44 UTC
  • mto: (2021.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2022.
  • Revision ID: stewart@flamingspork.com-20101220032144-7aqh2z403u7d7bdp
Merge Revision revid:marko.makela@oracle.com-20101104131215-pfxnpidlrzd4krg0 from MySQL InnoDB

Original revid:marko.makela@oracle.com-20101104131215-pfxnpidlrzd4krg0

Original Authors: Marko Mäkelä <marko.makela@oracle.com>
Original commit message:
row_ins_index_entry(): Note that only CREATE INDEX sets foreign=FALSE.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2008 Sun Microsystems, Inc.
2
 
3
 
# This program is free software; you can redistribute it and/or modify
4
 
# it under the terms of version 2 GNU General Public License as
5
 
# published by the Free Software Foundation.
6
 
#
7
 
# There are special exceptions to the terms and conditions of the GPL as it
8
 
# is applied to this software. View the full text of the exception in file
9
 
# EXCEPTIONS-CLIENT in the directory of this software distribution.
10
 
11
 
# This library is distributed in the hope that it will be useful,
12
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 
# Library General Public License for more details.
15
 
16
 
# You should have received a copy of the GNU General Public License
17
 
# along with this program; if not, write to the Free Software
18
 
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 
20
 
 
21
 
 
22
 
MYSQLDATAdir =                  $(localstatedir)
23
 
MYSQLSHAREdir =                 $(pkgdatadir)
24
 
MYSQLBASEdir=                   $(prefix)
25
 
 
26
 
libdrizzleincludedir = ${includedir}/libdrizzle
27
 
dist_libdrizzleinclude_HEADERS =        \
28
 
                                        get_password.h \
29
 
                                        drizzle.h \
30
 
                                        drizzle_data.h \
31
 
                                        drizzle_field.h \
32
 
                                        drizzle_methods.h \
33
 
                                        drizzle_options.h \
34
 
                                        drizzle_parameters.h \
35
 
                                        drizzle_res.h \
36
 
                                        drizzle_rows.h \
37
 
                                        libdrizzle.h \
38
 
                                        errmsg.h \
39
 
                                        net_serv.h \
40
 
                                        pack.h \
41
 
                                        password.h \
42
 
                                        vio.h
43
 
 
44
 
lib_LTLIBRARIES = libdrizzle.la
45
 
libdrizzle_la_SOURCES = client.c \
46
 
                        drizzle.c \
47
 
                        drizzle_data.c \
48
 
                        errmsg.c \
49
 
                        get_password.c \
50
 
                        libdrizzle.c \
51
 
                        libdrizzle_priv.c \
52
 
                        local_infile.c \
53
 
                        net_serv.c \
54
 
                        pack.c \
55
 
                        password.c \
56
 
                        vio.c \
57
 
                        viosocket.c
58
 
 
59
 
libdrizzle_la_LDFLAGS = -version-info @SHARED_LIB_VERSION@ @LD_VERSION_SCRIPT@
60
 
libdrizzle_la_LIBS = ${Z_LIBS}
61
 
 
62
 
DEFS =                  -DDEFAULT_CHARSET_HOME="\"$(MYSQLBASEdir)\"" \
63
 
                        -DDATADIR="\"$(MYSQLDATAdir)\"" \
64
 
                        -DDEFAULT_HOME_ENV=DRIZZLE_HOME \
65
 
                        -DDEFAULT_GROUP_SUFFIX_ENV=DRIZZLE_GROUP_SUFFIX \
66
 
                        -DDEFAULT_SYSCONFDIR="\"$(sysconfdir)\"" \
67
 
                        -DSHAREDIR="\"$(MYSQLSHAREdir)\"" \
68
 
                        -DUNDEF_THREADS_HACK
69
 
 
70
 
noinst_HEADERS =        libdrizzle_priv.h \
71
 
                        local_infile.h
72
 
 
73
 
EXTRA_DIST =            libdrizzle.ver
74
 
CLEANFILES =            $(target_libadd) $(SHLIBOBJS) \
75
 
                        $(target) $(BUILT_SOURCES)
76