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
1e2eb3cd
Commit
1e2eb3cd
authored
Mar 11, 2010
by
Sergey Vojtovich
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql-5.1 to mysql-5.1-bugteam.
parents
2cc8c47b
fc4d400a
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
288 additions
and
294 deletions
+288
-294
COPYING
COPYING
+277
-290
configure.in
configure.in
+1
-1
support-files/mysql.spec.sh
support-files/mysql.spec.sh
+10
-3
No files found.
COPYING
View file @
1e2eb3cd
This diff is collapsed.
Click to expand it.
configure.in
View file @
1e2eb3cd
...
...
@@ -12,7 +12,7 @@ dnl
dnl When changing the major version number please also check the switch
dnl statement
in
mysqlbinlog::check_master_version
()
.
You may also need
dnl to update version.c
in
ndb.
AC_INIT
([
MySQL Server],
[
5.1.4
5
],
[]
,
[
mysql]
)
AC_INIT
([
MySQL Server],
[
5.1.4
6
],
[]
,
[
mysql]
)
AC_CONFIG_SRCDIR
([
sql/mysqld.cc]
)
AC_CANONICAL_SYSTEM
...
...
support-files/mysql.spec.sh
View file @
1e2eb3cd
...
...
@@ -21,7 +21,8 @@
# NOTE: "vendor" is used in upgrade/downgrade check, so you can't
# change these, has to be exactly as is.
%define mysql_old_vendor MySQL AB
%define mysql_vendor Sun Microsystems, Inc.
%define mysql_vendor_2 Sun Microsystems, Inc.
%define mysql_vendor Oracle and/or its affiliates
%define mysql_version @VERSION@
...
...
@@ -617,6 +618,7 @@ if [ $? -eq 0 -a -n "$installed" ]; then
vendor
=
`
rpm
-q
--queryformat
=
'%{VENDOR}'
"
$installed
"
2>&1
`
version
=
`
rpm
-q
--queryformat
=
'%{VERSION}'
"
$installed
"
2>&1
`
myoldvendor
=
'%{mysql_old_vendor}'
myvendor_2
=
'%{mysql_vendor_2}'
myvendor
=
'%{mysql_vendor}'
myversion
=
'%{mysql_version}'
...
...
@@ -628,10 +630,10 @@ if [ $? -eq 0 -a -n "$installed" ]; then
[
-z
"
$new_family
"
]
&&
new_family
=
"<bad package specification: version
$myversion
>"
error_text
=
if
[
"
$vendor
"
!=
"
$myoldvendor
"
-a
"
$vendor
"
!=
"
$myvendor
"
]
;
then
if
[
"
$vendor
"
!=
"
$myoldvendor
"
-a
"
$vendor
"
!=
"
$myvendor
_2
"
-a
"
$vendor
"
!=
"
$myvendor
"
]
;
then
error_text
=
"
$error_text
The current MySQL server package is provided by a different
vendor (
$vendor
) than
$myoldvendor
or
$myvendor
.
vendor (
$vendor
) than
$myoldvendor
,
$myvendor_2
,
or
$myvendor
.
Some files may be installed to different locations, including log
files and the service startup script in %{_sysconfdir}/init.d/.
"
...
...
@@ -1036,6 +1038,11 @@ fi
# merging BK trees)
##############################################################################
%changelog
*
Mon Mar 01 2010 Joerg Bruehe <joerg.bruehe@sun.com>
- Set
"Oracle and/or its affiliates"
as the vendor and copyright owner,
accept upgrading from packages showing MySQL or Sun as vendor.
*
Fri Feb 05 2010 Joerg Bruehe <joerg.bruehe@sun.com>
- Formatting changes:
...
...
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