~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to support-files/include.am

  • Committer: Brian Aker
  • Date: 2010-07-28 23:07:42 UTC
  • mto: This revision was merged to the branch mainline in revision 1671.
  • Revision ID: brian@gaz-20100728230742-idji8pjd3trphd1a
Fix up a few additional cases around case insensitive usage for
unordered_map. This also places the code in util/string.h behind an
additional namespace of "util"

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#
16
16
# You should have received a copy of the GNU Library General Public
17
17
# License along with this library; if not, write to the Free
18
 
# Software Foundation, Inc., 51 Franklin Place - Suite 330, Boston,
19
 
# MA 02110-1301, USA
 
18
# Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 
19
# MA 02111-1307, USA
 
20
 
 
21
pkgconfigdir = $(libdir)/pkgconfig
 
22
 
 
23
# Default same as 'pkgdatadir', but we can override it
 
24
pkgsuppdir =            $(datadir)/@PACKAGE@
 
25
 
 
26
pkgsupp_DATA =          support-files/drizzle-log-rotate
 
27
 
 
28
pkgsupp_SCRIPTS =       support-files/drizzle.server 
 
29
 
20
30
 
21
31
EXTRA_DIST+= \
22
32
             support-files/smf/drizzle \
23
33
             support-files/smf/drizzle.xml \
24
 
             support-files/smf/install.sh 
25
 
 
26
 
pkgconfigdir= $(libdir)/pkgconfig
27
 
pkgconfig_DATA= \
28
 
                support-files/drizzle7.pc \
29
 
                support-files/libdrizzle.pc
 
34
             support-files/smf/install.sh \
 
35
             support-files/drizzle.spec
 
36
generic_rpm:
 
37
        rm -f ~/rpmbuild/RPMS/x86_64/drizzle-$(VERSION)*.rpm
 
38
        rm -f ~/rpmbuild/SRPMS/drizzle-$(VERSION)*.rpm
 
39
        cp drizzle-$(VERSION).tar.gz ~/rpmbuild/SOURCES/
 
40
        rpmbuild -ba support-files/drizzle.spec
 
41
        cp ~/rpmbuild/RPMS/x86_64/drizzle-$(VERSION)*.rpm .
 
42
        cp ~/rpmbuild/SRPMS/drizzle-$(VERSION)*.rpm .
 
43
 
 
44
rpm: dist generic_rpm
 
45