~ubuntu-branches/ubuntu/hardy/mysql-dfsg-5.0/hardy-updates

« back to all changes in this revision

Viewing changes to mysql-test/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2007-04-02 16:10:53 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20070402161053-zkil9hjq9k5p1uzv
Tags: 5.0.37-0ubuntu1
* New upstream bugfix release.
  - Fixes replication failure with auto-increment and on duplicate key
    update, a regression introduced into 5.0.24. (LP: #95821)
* debian/control: Set Ubuntu maintainer.
* debian/rules: Change comments from 'Debian etch' to 'Ubuntu 7.04'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
@SET_MAKE@
16
16
 
17
 
# Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
 
17
# Copyright (C) 2000-2006 MySQL AB
18
18
#
19
19
# This library is free software; you can redistribute it and/or
20
20
# modify it under the terms of the GNU Library General Public
21
 
# License as published by the Free Software Foundation; either
22
 
# version 2 of the License, or (at your option) any later version.
 
21
# License as published by the Free Software Foundation; version 2
 
22
# of the License.
23
23
#
24
24
# This library is distributed in the hope that it will be useful,
25
25
# but WITHOUT ANY WARRANTY; without even the implied warranty of
32
32
# MA 02111-1307, USA
33
33
 
34
34
 
35
 
 
36
35
srcdir = @srcdir@
37
36
top_srcdir = @top_srcdir@
38
37
VPATH = @srcdir@
57
56
host_triplet = @host@
58
57
target_triplet = @target@
59
58
subdir = mysql-test
60
 
DIST_COMMON = README $(noinst_HEADERS) $(srcdir)/Makefile.am \
61
 
        $(srcdir)/Makefile.in
 
59
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in
62
60
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
63
61
am__aclocal_m4_deps = $(top_srcdir)/config/ac-macros/alloca.m4 \
64
62
        $(top_srcdir)/config/ac-macros/check_cpu.m4 \
103
101
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
104
102
testDATA_INSTALL = $(INSTALL_DATA)
105
103
DATA = $(test_DATA)
106
 
HEADERS = $(noinst_HEADERS)
107
104
ETAGS = etags
108
105
CTAGS = ctags
109
106
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
215
212
MYSQL_UNIX_ADDR = @MYSQL_UNIX_ADDR@
216
213
MYSQL_VERSION_ID = @MYSQL_VERSION_ID@
217
214
NDB_DEFS = @NDB_DEFS@
 
215
NDB_LD_VERSION_SCRIPT = @NDB_LD_VERSION_SCRIPT@
218
216
NDB_SCI_INCLUDES = @NDB_SCI_INCLUDES@
219
217
NDB_SCI_LIBS = @NDB_SCI_LIBS@
 
218
NDB_SHARED_LIB_MAJOR_VERSION = @NDB_SHARED_LIB_MAJOR_VERSION@
 
219
NDB_SHARED_LIB_VERSION = @NDB_SHARED_LIB_VERSION@
220
220
NDB_SIZEOF_CHAR = @NDB_SIZEOF_CHAR@
221
221
NDB_SIZEOF_CHARP = @NDB_SIZEOF_CHARP@
222
222
NDB_SIZEOF_INT = @NDB_SIZEOF_INT@
388
388
 
389
389
CLEANFILES = $(GENSCRIPTS) $(test_DATA)
390
390
INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include -I..
391
 
noinst_HEADERS = my_manage.h
392
391
SUFFIXES = .sh
393
392
all: all-recursive
394
393
 
649
648
          dist-hook
650
649
check-am: all-am
651
650
check: check-recursive
652
 
all-am: Makefile $(SCRIPTS) $(DATA) $(HEADERS)
 
651
all-am: Makefile $(SCRIPTS) $(DATA)
653
652
installdirs: installdirs-recursive
654
653
installdirs-am:
655
654
        for dir in "$(DESTDIR)$(testdir)" "$(DESTDIR)$(testdir)"; do \