Skip to content

Commit 54269df

Browse files
committed
Applied Terje patch to wl7688
1 parent 59a43e0 commit 54269df

15 files changed

+17
-370
lines changed

.bzrignore

+2
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,8 @@ client/rpl_tblmap.cc
412412
client/rpl_utility.h
413413
client/rpl_utility.cc
414414
client/select_test
415+
client/sql_commands_system_data.h
416+
client/sql_commands_system_tables.h
415417
client/sql_const.h
416418
client/sql_string.cpp
417419
client/ssl_test

cmake/cpack_source_ignore_files.cmake

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ $\\\\.bz2
3434
/_CPack_Packages/
3535
scripts/make_binary_distribution$
3636
scripts/mysql_config$
37-
scripts/mysql_install_db$
3837
scripts/mysql_secure_installation$
3938
scripts/mysql_server_config$
4039
scripts/mysqld_multi$

packaging/rpm-fedora/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License as published by
@@ -28,7 +28,7 @@ IF(UNIX)
2828

2929
FOREACH(fedfile my.cnf my_config.h mysql_config.sh
3030
mysqld.service mysql-systemd-start mysql.conf
31-
mysql-5.6.16-mysql-install.patch mysql-5.7-libmysqlclient-symbols.patch)
31+
mysql-5.7-libmysqlclient-symbols.patch)
3232
CONFIGURE_FILE(${fedfile} ${CMAKE_CURRENT_BINARY_DIR}/${fedfile} COPYONLY)
3333
ENDFOREACH()
3434
ENDIF()

packaging/rpm-fedora/mysql-5.6.16-mysql-install.patch

-163
This file was deleted.

packaging/rpm-fedora/mysql-systemd-start

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ install_db () {
2727
[ -d "$datadir/mysql" ] && exit 0
2828

2929
# Create initial db
30-
/usr/bin/mysql_install_db --rpm --datadir="$datadir" --user=mysql
30+
/usr/bin/mysql_install_db --datadir="$datadir" --user=mysql
3131
exit 0
3232
}
3333

packaging/rpm-fedora/mysql.spec.in

-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ Source3: mysql.conf
7575
Source4: my_config.h
7676
Source6: mysql_config.sh
7777
Patch0: mysql-5.7-libmysqlclient-symbols.patch
78-
Patch1: mysql-5.6.16-mysql-install.patch
7978
BuildRequires: cmake
8079
BuildRequires: perl
8180
BuildRequires: time
@@ -308,7 +307,6 @@ the embedded version of the MySQL server.
308307
%setup -q -T -a 0 -c -n %{src_dir}
309308
pushd %{src_dir}
310309
%patch0 -p1
311-
#patch1 -p1
312310

313311
%build
314312
# Fail quickly and obviously if user tries to build as root

packaging/rpm-oel/CMakeLists.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
22
#
33
# This program is free software; you can redistribute it and/or modify
44
# it under the terms of the GNU General Public License as published by
@@ -28,8 +28,7 @@ IF(UNIX)
2828

2929
FOREACH(fedfile my.cnf my_config.h mysql_config.sh
3030
mysqld.service mysql-systemd-start mysql.conf
31-
mysql-5.6.16-mysql-install.patch mysql.init
32-
filter-requires.sh filter-provides.sh
31+
mysql.init filter-requires.sh filter-provides.sh
3332
mysql-5.7-libmysqlclient-symbols.patch)
3433
CONFIGURE_FILE(${fedfile} ${CMAKE_CURRENT_BINARY_DIR}/${fedfile} COPYONLY)
3534
ENDFOREACH()

0 commit comments

Comments
 (0)