Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
9c7629fd
Commit
9c7629fd
authored
Nov 24, 2010
by
Alexander Nozdrin
Browse files
Options
Browse Files
Download
Plain Diff
Merge from mysql-5.1-bugteam.
parents
7bf81b15
1e43b94c
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
13 additions
and
17 deletions
+13
-17
CMakeLists.txt
CMakeLists.txt
+1
-1
libmysql/conf_to_src.c
libmysql/conf_to_src.c
+1
-2
libmysql/errmsg.c
libmysql/errmsg.c
+1
-2
libmysql/get_password.c
libmysql/get_password.c
+1
-2
libmysql/libmysql.c
libmysql/libmysql.c
+1
-2
scripts/make_binary_distribution.sh
scripts/make_binary_distribution.sh
+2
-2
scripts/make_win_bin_dist
scripts/make_win_bin_dist
+2
-2
support-files/mysql.spec.sh
support-files/mysql.spec.sh
+4
-4
No files found.
CMakeLists.txt
View file @
9c7629fd
...
...
@@ -344,7 +344,7 @@ ENDIF()
# RPM installs documentation directly from the source tree
#
IF
(
NOT INSTALL_LAYOUT MATCHES
"RPM"
)
INSTALL
(
FILES COPYING
EXCEPTIONS-CLIENT
LICENSE.mysql
INSTALL
(
FILES COPYING LICENSE.mysql
DESTINATION
${
INSTALL_DOCREADMEDIR
}
COMPONENT Readme
OPTIONAL
...
...
libmysql/conf_to_src.c
View file @
9c7629fd
...
...
@@ -5,8 +5,7 @@
the Free Software Foundation.
There are special exceptions to the terms and conditions of the GPL as it
is applied to this software. View the full text of the exception in file
EXCEPTIONS-CLIENT in the directory of this software distribution.
is applied to this software.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
...
...
libmysql/errmsg.c
View file @
9c7629fd
...
...
@@ -5,8 +5,7 @@
the Free Software Foundation.
There are special exceptions to the terms and conditions of the GPL as it
is applied to this software. View the full text of the exception in file
EXCEPTIONS-CLIENT in the directory of this software distribution.
is applied to this software.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
...
...
libmysql/get_password.c
View file @
9c7629fd
...
...
@@ -5,8 +5,7 @@
the Free Software Foundation.
There are special exceptions to the terms and conditions of the GPL as it
is applied to this software. View the full text of the exception in file
EXCEPTIONS-CLIENT in the directory of this software distribution.
is applied to this software.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
...
...
libmysql/libmysql.c
View file @
9c7629fd
...
...
@@ -5,8 +5,7 @@
the Free Software Foundation.
There are special exceptions to the terms and conditions of the GPL as it
is applied to this software. View the full text of the exception in file
EXCEPTIONS-CLIENT in the directory of this software distribution.
is applied to this software.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
...
...
scripts/make_binary_distribution.sh
View file @
9c7629fd
...
...
@@ -304,8 +304,8 @@ mv $DEST/bin/mysql_install_db $DEST/scripts/
# Copy readme and license files
cp
README Docs/INSTALL-BINARY
$DEST
/
if
[
-f
COPYING
-a
-f
EXCEPTIONS-CLIENT
]
;
then
cp
COPYING
EXCEPTIONS-CLIENT
$DEST
/
if
[
-f
COPYING
]
;
then
cp
COPYING
$DEST
/
elif
[
-f
LICENSE.mysql
]
;
then
cp
LICENSE.mysql
$DEST
/
else
...
...
scripts/make_win_bin_dist
View file @
9c7629fd
...
...
@@ -183,8 +183,8 @@ cp ChangeLog $DESTDIR/Docs/ || /bin/true
cp
support-files/my-
*
.ini
$DESTDIR
/
if
[
-f
COPYING
]
;
then
cp
COPYING
EXCEPTIONS-CLIENT
$DESTDIR
/
cp
COPYING
$DESTDIR
/Docs/
cp
COPYING
$DESTDIR
/
cp
COPYING
$DESTDIR
/Docs/
fi
# ----------------------------------------------------------------------
...
...
support-files/mysql.spec.sh
View file @
9c7629fd
...
...
@@ -211,7 +211,6 @@
%define license_files_server %
{
src_dir
}
/LICENSE.mysql
%define license_type Commercial
%else
%define license_files_devel %
{
src_dir
}
/EXCEPTIONS-CLIENT
%define license_files_server %
{
src_dir
}
/COPYING %
{
src_dir
}
/README
%define license_type GPL
%endif
...
...
@@ -1037,9 +1036,6 @@ echo "=====" >> $STATUS_HISTORY
# ----------------------------------------------------------------------------
%files
-n
MySQL-devel%
{
product_suffix
}
-f
optional-files-devel
%defattr
(
-, root, root, 0755
)
%if %
{
defined license_files_devel
}
%doc %
{
license_files_devel
}
%endif
%doc %attr
(
644, root, man
)
%
{
_mandir
}
/man1/comp_err.1
*
%doc %attr
(
644, root, man
)
%
{
_mandir
}
/man1/mysql_config.1
*
%attr
(
755, root, root
)
%
{
_bindir
}
/mysql_config
...
...
@@ -1099,6 +1095,10 @@ echo "=====" >> $STATUS_HISTORY
- Add a
"triggerpostun"
to handle the uninstall of the
"-community"
server RPM.
- This fixes bug#55015
"MySQL server is not restarted properly after RPM upgrade"
.
*
Wed Nov 24 2010 Alexander Nozdrin <alexander.nozdrin@oracle.com>
- EXCEPTIONS-CLIENT has been deleted, remove it from here too.
*
Tue Jun 15 2010 Joerg Bruehe <joerg.bruehe@sun.com>
- Change the behaviour on installation and upgrade:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment