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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
af7cb104
Commit
af7cb104
authored
Sep 23, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/space/my/mysql-4.1
into mysql.com:/space/my/mysql-4.1-build
parents
c4d9dc7d
a448d769
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
21 additions
and
28 deletions
+21
-28
Build-tools/mysql-copyright
Build-tools/mysql-copyright
+16
-11
include/my_pthread.h
include/my_pthread.h
+0
-1
sql/filesort.cc
sql/filesort.cc
+0
-1
sql/gen_lex_hash.cc
sql/gen_lex_hash.cc
+3
-12
sql/item.h
sql/item.h
+1
-1
sql/item_cmpfunc.cc
sql/item_cmpfunc.cc
+1
-1
sql/records.cc
sql/records.cc
+0
-1
No files found.
Build-tools/mysql-copyright
View file @
af7cb104
...
...
@@ -3,8 +3,11 @@
# Untar a MySQL distribution, change the copyright texts,
# pack it up again to a given directory
$VER
=
"
1.
2
";
$VER
=
"
1.
3
";
use
Cwd
;
use
File::
Basename
;
use
File::
Copy
;
use
Getopt::
Long
;
$opt_help
=
0
;
...
...
@@ -17,8 +20,7 @@ GetOptions("help","version","target=s") || error();
# fix the directory prefix for target dir
$WD
=
`
pwd
`;
chop
$WD
;
$WD
=
cwd
();
$opt_target
=
$WD
.
'
/
'
.
$opt_target
;
&
main
();
...
...
@@ -73,11 +75,11 @@ sub main
$newdistname
=
$1
.
"
com
"
.
$2
.
$3
;
}
# find out the extract path (should be same as distname!)
$destdir
=
`
tar tvzf ../
$distfile
| head -1
`
;
# remove
leading crab
$destdir
=~
s/.*\d+:\d+:\d+[ ]//
;
# remove newline and slash from the end
$destdir
=
substr
(
$destdir
,
0
,
-
2
)
;
chomp
(
$destdir
=
`
tar ztf ../
$distfile
| head -1
`)
;
# remove
slash from the end
$destdir
=
substr
(
$destdir
,
0
,
-
1
)
;
print
"
destdir:
$destdir
\n
";
print
"
distname:
$distname
\n
"
;
if
("
$destdir
"
ne
"
$distname
")
{
...
...
@@ -96,15 +98,18 @@ sub main
# remove the 'PUBLIC' file from distribution and copy MySQLEULA.txt
# on the toplevel of the directory instead. file 'PUBLIC' shouldn't
# exist in the new mysql distributions, but let's be sure..
`
rm -f
$destdir
/PUBLIC
$destdir
/README
`
;
`
cp -p
$WD
/Docs/MySQLEULA.txt
$destdir
/
`
;
unlink
("
$destdir
/PUBLIC
",
"
$destdir
/README
")
;
copy
("
$WD
/Docs/MySQLEULA.txt
",
"
$destdir
")
;
# remove readline subdir
`
rm -rf
$destdir
/cmd-line-utils/readline
`;
# fix file copyrights
&
fix_usage_copyright
();
&
add_copyright
();
# rename the directory with new distribution name
`
mv -f
$destdir
$newdistname
`
;
rename
(
$destdir
,
$newdistname
)
;
# tar the new distribution
`
tar cz -f
$opt_target
/
$newdistname
.tar.gz *
`;
...
...
include/my_pthread.h
View file @
af7cb104
/* Copyright (C) 2000 MySQL AB
This program is free software; you can redistribute it and/or modify
...
...
sql/filesort.cc
View file @
af7cb104
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
This program is free software; you can redistribute it and/or modify
...
...
sql/gen_lex_hash.cc
View file @
af7cb104
...
...
@@ -430,18 +430,9 @@ int main(int argc,char **argv)
exit
(
1
);
printf
(
"/* Copyright (C) 2001 MySQL AB
\n
\
This program is free software; you can redistribute it and/or modify
\n
\
it under the terms of the GNU General Public License as published by
\n
\
the Free Software Foundation; either version 2 of the License, or
\n
\
(at your option) any later version.
\n\n
\
This program is distributed in the hope that it will be useful,
\n
\
but WITHOUT ANY WARRANTY; without even the implied warranty of
\n
\
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\n
\
GNU General Public License for more details.
\n\n
\
You should have received a copy of the GNU General Public License
\n
\
along with this program; if not, write to the Free Software
\n
\
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307\
USA */
\n\n
"
);
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
\n
\
and you are welcome to modify and redistribute it under the GPL license
\n
\
\n
*/
\n\n
"
);
printf
(
"/* This code is generated by gen_lex_hash.cc that seeks for\
a perfect
\n
hash function */
\n\n
"
);
...
...
sql/item.h
View file @
af7cb104
/* Copyright (C) 2000-2003
/* Copyright (C) 2000-2003
MySQL AB & MySQL Finland AB & TCX DataKonsult AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
sql/item_cmpfunc.cc
View file @
af7cb104
/* Copyright (C) 2000-2003
/* Copyright (C) 2000-2003
MySQL AB & MySQL Finland AB & TCX DataKonsult AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
sql/records.cc
View file @
af7cb104
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
This program is free software; you can redistribute it and/or modify
...
...
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