2006-12-31 01:02:27 +01:00
|
|
|
# Copyright (C) 2000-2001, 2003-2006 MySQL AB
|
2000-07-31 21:29:14 +02:00
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Library General Public
|
2006-12-23 20:17:15 +01:00
|
|
|
# License as published by the Free Software Foundation; version 2
|
|
|
|
# of the License.
|
2000-07-31 21:29:14 +02:00
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Library General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
|
|
# License along with this library; if not, write to the Free
|
|
|
|
# Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
|
|
|
|
# MA 02111-1307, USA
|
|
|
|
|
|
|
|
## Process this file with automake to create Makefile.in
|
|
|
|
|
|
|
|
EXTRA_DIST = mysql.spec.sh \
|
|
|
|
my-small.cnf.sh \
|
|
|
|
my-medium.cnf.sh \
|
|
|
|
my-large.cnf.sh \
|
|
|
|
my-huge.cnf.sh \
|
2004-08-26 19:46:11 +02:00
|
|
|
my-innodb-heavy-4G.cnf.sh \
|
2000-07-31 21:29:14 +02:00
|
|
|
mysql-log-rotate.sh \
|
|
|
|
mysql.server.sh \
|
2007-07-17 19:27:31 +02:00
|
|
|
mysqld_multi.server.sh \
|
2000-09-20 19:37:07 +03:00
|
|
|
binary-configure.sh \
|
2007-03-17 11:19:21 +01:00
|
|
|
magic mysql.m4 \
|
2005-02-03 17:58:02 +01:00
|
|
|
MySQL-shared-compat.spec.sh \
|
2007-02-26 08:11:10 +01:00
|
|
|
ndb-config-2-node.ini.sh \
|
|
|
|
compiler_warnings.supp
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2007-01-25 17:51:21 +01:00
|
|
|
SUBDIRS = MacOSX RHEL4-SElinux
|
2003-02-03 20:39:48 +01:00
|
|
|
|
2007-09-26 20:19:33 +02:00
|
|
|
# Default same as 'pkgdatadir', but we can override it
|
|
|
|
pkgsuppdir = $(datadir)/@PACKAGE@
|
|
|
|
|
|
|
|
pkgsupp_DATA = my-small.cnf \
|
2000-07-31 21:29:14 +02:00
|
|
|
my-medium.cnf \
|
|
|
|
my-large.cnf \
|
|
|
|
my-huge.cnf \
|
2007-01-25 17:51:21 +01:00
|
|
|
my-innodb-heavy-4G.cnf \
|
2000-07-31 21:29:14 +02:00
|
|
|
mysql-log-rotate \
|
2005-07-20 21:47:10 +02:00
|
|
|
binary-configure \
|
2005-02-03 17:58:02 +01:00
|
|
|
ndb-config-2-node.ini
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2007-09-26 20:19:33 +02:00
|
|
|
pkgsupp_SCRIPTS = mysql.server \
|
2007-07-17 19:27:31 +02:00
|
|
|
mysqld_multi.server
|
2001-02-01 20:49:04 -05:00
|
|
|
|
2007-02-14 12:42:11 +01:00
|
|
|
aclocaldir = $(datadir)/aclocal
|
|
|
|
aclocal_DATA = mysql.m4
|
|
|
|
|
2005-08-11 20:13:12 +02:00
|
|
|
noinst_DATA = mysql-@VERSION@.spec \
|
|
|
|
MySQL-shared-compat.spec
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
CLEANFILES = my-small.cnf \
|
|
|
|
my-medium.cnf \
|
|
|
|
my-large.cnf \
|
|
|
|
my-huge.cnf \
|
2004-08-24 13:51:28 +02:00
|
|
|
my-innodb-heavy-4G.cnf \
|
2000-07-31 21:29:14 +02:00
|
|
|
mysql.spec \
|
|
|
|
mysql-@VERSION@.spec \
|
2000-09-14 15:10:06 +03:00
|
|
|
mysql-log-rotate \
|
|
|
|
mysql.server \
|
2007-07-17 19:27:31 +02:00
|
|
|
mysqld_multi.server \
|
2003-05-06 22:33:08 +02:00
|
|
|
binary-configure \
|
2005-02-03 17:58:02 +01:00
|
|
|
MySQL-shared-compat.spec \
|
|
|
|
ndb-config-2-node.ini
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
mysql-@VERSION@.spec: mysql.spec
|
|
|
|
rm -f $@
|
2001-02-02 03:47:06 +02:00
|
|
|
cp mysql.spec $@
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
SUFFIXES = .sh
|
|
|
|
|
|
|
|
.sh:
|
|
|
|
@RM@ -f $@ $@-t
|
|
|
|
@SED@ \
|
|
|
|
-e 's!@''bindir''@!$(bindir)!g' \
|
2000-09-07 04:55:17 +03:00
|
|
|
-e 's!@''sbindir''@!$(sbindir)!g' \
|
2000-07-31 21:29:14 +02:00
|
|
|
-e 's!@''scriptdir''@!$(bindir)!g' \
|
|
|
|
-e 's!@''prefix''@!$(prefix)!g' \
|
|
|
|
-e 's!@''datadir''@!$(datadir)!g' \
|
|
|
|
-e 's!@''localstatedir''@!$(localstatedir)!g' \
|
|
|
|
-e 's!@''libexecdir''@!$(libexecdir)!g' \
|
|
|
|
-e 's!@''CC''@!@CC@!'\
|
|
|
|
-e 's!@''CXX''@!@CXX@!'\
|
|
|
|
-e 's!@''GXX''@!@GXX@!'\
|
|
|
|
-e 's!@''PERL''@!@PERL@!' \
|
|
|
|
-e 's!@''CFLAGS''@!@SAVE_CFLAGS@!'\
|
|
|
|
-e 's!@''CXXFLAGS''@!@SAVE_CXXFLAGS@!'\
|
|
|
|
-e 's!@''LDFLAGS''@!@SAVE_LDFLAGS@!'\
|
|
|
|
-e 's!@''VERSION''@!@VERSION@!' \
|
2001-01-19 02:46:13 +02:00
|
|
|
-e 's!@''MYSQL_SERVER_SUFFIX''@!@MYSQL_SERVER_SUFFIX@!' \
|
2000-07-31 21:29:14 +02:00
|
|
|
-e 's!@''COMPILATION_COMMENT''@!@COMPILATION_COMMENT@!' \
|
|
|
|
-e 's!@''MACHINE_TYPE''@!@MACHINE_TYPE@!' \
|
|
|
|
-e 's!@''HOSTNAME''@!@HOSTNAME@!' \
|
|
|
|
-e 's!@''SYSTEM_TYPE''@!@SYSTEM_TYPE@!' \
|
|
|
|
-e 's!@''CHECK_PID''@!@CHECK_PID@!' \
|
|
|
|
-e 's!@''FIND_PROC''@!@FIND_PROC@!' \
|
|
|
|
-e 's!@''MYSQLD_DEFAULT_SWITCHES''@!@MYSQLD_DEFAULT_SWITCHES@!' \
|
|
|
|
-e 's!@''MYSQL_UNIX_ADDR''@!@MYSQL_UNIX_ADDR@!' \
|
2005-04-20 20:10:28 +02:00
|
|
|
-e 's!@''TARGET_LINUX''@!@TARGET_LINUX@!' \
|
2000-07-31 21:29:14 +02:00
|
|
|
-e "s!@""CONF_COMMAND""@!@CONF_COMMAND@!" \
|
|
|
|
-e 's!@''MYSQLD_USER''@!@MYSQLD_USER@!' \
|
|
|
|
-e 's!@''sysconfdir''@!@sysconfdir@!' \
|
|
|
|
-e 's!@''SHORT_MYSQL_INTRO''@!@SHORT_MYSQL_INTRO@!' \
|
|
|
|
-e 's!@''SHARED_LIB_VERSION''@!@SHARED_LIB_VERSION@!' \
|
|
|
|
-e 's!@''MYSQL_BASE_VERSION''@!@MYSQL_BASE_VERSION@!' \
|
|
|
|
-e 's!@''MYSQL_NO_DASH_VERSION''@!@MYSQL_NO_DASH_VERSION@!' \
|
|
|
|
-e 's!@''MYSQL_TCP_PORT''@!@MYSQL_TCP_PORT@!' \
|
|
|
|
-e 's!@''PERL_DBI_VERSION''@!@PERL_DBI_VERSION@!' \
|
|
|
|
-e 's!@''PERL_DBD_VERSION''@!@PERL_DBD_VERSION@!' \
|
|
|
|
-e 's!@''PERL_DATA_DUMPER''@!@PERL_DATA_DUMPER@!' \
|
|
|
|
$< > $@-t
|
|
|
|
@MV@ $@-t $@
|
2000-08-18 12:48:00 +03:00
|
|
|
|
|
|
|
# Don't update the files from bitkeeper
|
|
|
|
%::SCCS/s.%
|