~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to support-files/include.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
# vim:ft=automake
 
2
 
1
3
# Copyright (C) 2000-2001, 2003-2006 MySQL AB
 
4
# Copyright (C) Brian Aker
2
5
#
3
6
# This library is free software; you can redistribute it and/or
4
7
# modify it under the terms of the GNU Library General Public
12
15
#
13
16
# You should have received a copy of the GNU Library General Public
14
17
# License along with this library; if not, write to the Free
15
 
# Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
16
 
# MA 02111-1307, USA
 
18
# Software Foundation, Inc., 51 Franklin Place - Suite 330, Boston,
 
19
# MA 02110-1301, USA
17
20
 
18
 
pkgconfigdir = $(libdir)/pkgconfig
19
 
pkgconfig_DATA = libdrizzle.pc
 
21
pkgconfigdir= $(libdir)/pkgconfig
 
22
pkgconfig_DATA= support-files/libdrizzle.pc
20
23
 
21
24
# Default same as 'pkgdatadir', but we can override it
22
25
pkgsuppdir =            $(datadir)/@PACKAGE@
23
26
 
24
 
pkgsupp_DATA =          drizzle-log-rotate
25
 
 
26
 
pkgsupp_SCRIPTS =       drizzle.server 
27
 
 
28
 
aclocaldir =            $(datadir)/aclocal
29
 
aclocal_DATA =          drizzle.m4
30
 
 
31
 
EXTRA_DIST =            drizzle.m4
 
27
pkgsupp_DATA =          support-files/drizzle-log-rotate
 
28
 
 
29
pkgsupp_SCRIPTS =       support-files/drizzle.server 
 
30
 
 
31
 
 
32
EXTRA_DIST+= \
 
33
             support-files/smf/drizzle \
 
34
             support-files/smf/drizzle.xml \
 
35
             support-files/smf/install.sh \
 
36
             support-files/drizzle.spec
 
37
generic_rpm:
 
38
        rm -f ~/rpmbuild/RPMS/x86_64/drizzle-$(VERSION)*.rpm
 
39
        rm -f ~/rpmbuild/SRPMS/drizzle-$(VERSION)*.rpm
 
40
        cp drizzle-$(VERSION).tar.gz ~/rpmbuild/SOURCES/
 
41
        rpmbuild -ba support-files/drizzle.spec
 
42
        cp ~/rpmbuild/RPMS/x86_64/drizzle-$(VERSION)*.rpm .
 
43
        cp ~/rpmbuild/SRPMS/drizzle-$(VERSION)*.rpm .
 
44
 
 
45
rpm: dist generic_rpm
32
46