summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorunknown <cbell/Chuck@suse.vabb.com>2006-12-07 09:18:35 -0500
committerunknown <cbell/Chuck@suse.vabb.com>2006-12-07 09:18:35 -0500
commit85a8f7c7a9bf8e067500a78899874f1298e2bdf4 (patch)
treec08b6d74a80b3c187b4d906a036d251117a9fc60 /config
parentd3f711fafc4928f941b8fc2fbceed5109b5d8bde (diff)
downloadmariadb-git-85a8f7c7a9bf8e067500a78899874f1298e2bdf4.tar.gz
WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
Please see worklog for details on files changed. BitKeeper/deleted/.del-have_row_based.require: Delete: mysql-test/r/have_row_based.require BitKeeper/deleted/.del-not_row_based.require: Delete: mysql-test/r/not_row_based.require BitKeeper/deleted/.del-have_row_based.inc: Delete: mysql-test/include/have_row_based.inc BitKeeper/deleted/.del-not_row_based.inc: Delete: mysql-test/include/not_row_based.inc BitKeeper/deleted/.del-replication.m4: Delete: config/ac-macros/replication.m4
Diffstat (limited to 'config')
-rw-r--r--config/ac-macros/ha_ndbcluster.m45
-rw-r--r--config/ac-macros/replication.m430
2 files changed, 1 insertions, 34 deletions
diff --git a/config/ac-macros/ha_ndbcluster.m4 b/config/ac-macros/ha_ndbcluster.m4
index a722f8f1d7d..1e82a7d7ce1 100644
--- a/config/ac-macros/ha_ndbcluster.m4
+++ b/config/ac-macros/ha_ndbcluster.m4
@@ -229,10 +229,7 @@ AC_DEFUN([MYSQL_SETUP_NDBCLUSTER], [
if test X"$ndb_binlog" = Xdefault ||
test X"$ndb_binlog" = Xyes
then
- if test X"$have_row_based" = Xyes
- then
- have_ndb_binlog="yes"
- fi
+ have_ndb_binlog="yes"
fi
if test X"$have_ndb_binlog" = Xyes
diff --git a/config/ac-macros/replication.m4 b/config/ac-macros/replication.m4
deleted file mode 100644
index babfa000a82..00000000000
--- a/config/ac-macros/replication.m4
+++ /dev/null
@@ -1,30 +0,0 @@
-dnl This file contains configuration parameters for replication.
-
-dnl ---------------------------------------------------------------------------
-dnl Macro: MYSQL_CHECK_REPLICATION
-dnl Sets HAVE_ROW_BASED_REPLICATION if --with-row-based-replication is used
-dnl ---------------------------------------------------------------------------
-
-AC_DEFUN([MYSQL_CHECK_REPLICATION], [
- AC_ARG_WITH([row-based-replication],
- AC_HELP_STRING([--without-row-based-replication],
- [Don't include row-based replication]),
- [row_based="$withval"],
- [row_based=yes])
- AC_MSG_CHECKING([for row-based replication])
-
- case "$row_based" in
- yes )
- AC_DEFINE([WITH_ROW_BASED_REPLICATION], [1], [Define to have row-based replication])
- AC_MSG_RESULT([-- including row-based replication])
- [have_row_based=yes]
- ;;
- * )
- AC_MSG_RESULT([-- not including row-based replication])
- [have_row_based=no]
- ;;
- esac
-])
-dnl ---------------------------------------------------------------------------
-dnl END OF MYSQL_CHECK_REPLICATION
-dnl ---------------------------------------------------------------------------