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
0935a093
Commit
0935a093
authored
Jun 23, 2004
by
mwagner@here.mwagner.org
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into here.mwagner.org:/Volumes/BK/mysql-4.1
parents
2c48e052
26609c49
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
21 deletions
+41
-21
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
Build-tools/mysql-copyright
Build-tools/mysql-copyright
+40
-21
No files found.
BitKeeper/etc/logging_ok
View file @
0935a093
...
...
@@ -116,6 +116,7 @@ mskold@mysql.com
msvensson@build.mysql.com
mwagner@cash.mwagner.org
mwagner@evoq.mwagner.org
mwagner@here.mwagner.org
mwagner@work.mysql.com
mydev@mysql.com
mysql@home.(none)
...
...
Build-tools/mysql-copyright
View file @
0935a093
...
...
@@ -102,27 +102,13 @@ sub main
# exist in the new mysql distributions, but let's be sure..
unlink
("
$destdir
/PUBLIC
",
"
$destdir
/README
");
copy
("
$WD
/Docs/MySQLEULA.txt
",
"
$destdir
");
# remove readline subdir and update configure accordingly
system
("
rm -rf
$destdir
/cmd-line-utils/readline
");
if
(
$win_flag
)
{
chdir
("
$destdir
")
or
(
print
"
$! Unable to change directory to
$desdir
!
\n
"
&&
exit
(
0
));
}
else
{
chdir
("
$destdir
");
unlink
("
configure
")
or
die
"
Can't delete
$destdir
/configure: $!
\n
";
open
(
CONFIGURE
,"
<configure.in
")
or
die
"
$! Unable to open configure.in to read from!
\n
";
undef
$/
;
my
$configure
=
<
CONFIGURE
>
;
close
(
CONFIGURE
);
$configure
=~
s|cmd\-line\-utils/readline/Makefile dnl\n?||g
;
open
(
CONFIGURE
,"
>configure.in
")
or
die
"
$! Unable to open configure.in to write to!
\n
";
print
CONFIGURE
$configure
;
close
(
CONFIGURE
);
`
autoconf
`;
if
(
!
-
f
"
configure
")
{
print
"
\"
./configure
\"
was not produced, exiting!
\n
";
exit
(
0
);
}
# remove readline, bdb subdirs and update 'configure'
my
@extra_fat
=
('
bdb
',
'
cmd-line-utils/readline
');
foreach
my
$fat
(
@extra_fat
)
{
&
trim_the_fat
(
$fat
);
}
# fix file copyrights
...
...
@@ -154,6 +140,39 @@ sub main
exit
(
0
);
}
####
#### This function will remove unwanted parts of a src tree for the mysqlcom
#### distributions.
####
sub
trim_the_fat
{
my
$the_fat
=
shift
;
my
$cwd
=
getcwd
();
system
("
rm -rf
$destdir
/
${the_fat}
");
if
(
$win_flag
)
{
chdir
("
$destdir
")
or
die
"
Unable to change directory to
$destdir
!: $!
\n
";
}
else
{
chdir
("
$destdir
");
unlink
("
configure
")
or
die
"
Can't delete
$destdir
/configure: $!
\n
";
open
(
CONFIGURE
,"
<configure.in
")
or
die
"
Unable to open configure.in for read: $!
\n
";
undef
$/
;
my
$configure
=
<
CONFIGURE
>
;
close
(
CONFIGURE
);
$configure
=~
s|${the_fat}/Makefile dnl\n?||g
;
open
(
CONFIGURE
,"
>configure.in
")
or
die
"
Unable to open configure.in for write: $!
\n
";
print
CONFIGURE
$configure
;
close
(
CONFIGURE
);
`
autoconf
`;
die
"
'./configure' was not produced!
"
unless
(
-
f
"
configure
");
chdir
("
$cwd
");
}
}
####
#### mysqld and MySQL client programs have a usage printed with --help.
#### This usage includes a copyright, which needs to be modified
...
...
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