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
e3bf35f5
Commit
e3bf35f5
authored
May 26, 2010
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Automerge latest fixes from trunk into 5.1.46 release branch.
parents
13c736f5
3ad82d76
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
24 deletions
+23
-24
extra/libevent/Makefile.am
extra/libevent/Makefile.am
+1
-1
win/make_mariadb_win_dist
win/make_mariadb_win_dist
+22
-23
No files found.
extra/libevent/Makefile.am
View file @
e3bf35f5
...
...
@@ -36,4 +36,4 @@ event-config.h: $(top_builddir)/include/config.h
-e
's/#ifndef /#ifndef _EVENT_/'
<
$(top_builddir)/include/config.h
>>
$@
echo
"#endif"
>>
$@
AM_CPPFLAGS
=
-Icompat
-I
$(top_srcdir)
/include
AM_CPPFLAGS
=
-I
$(srcdir)
/
compat
-I
$(top_srcdir)
/include
win/make_mariadb_win_dist
View file @
e3bf35f5
...
...
@@ -17,7 +17,7 @@ fi
set
-x
if
[
"x_
$1
"
!=
"x_-nobuild"
]
;
then
win/configure-mariadb.sh
sh
win/configure-mariadb.sh
cmake
-G
"Visual Studio 9 2008"
...
...
@@ -25,14 +25,13 @@ if [ "x_$1" != "x_-nobuild" ]; then
devenv.com MySQL.sln /build Debug
fi
# TODO extract version number
VER
=
`
cat
configure.in |
perl
-e
'while (<>) { if (/^A
M_INIT_AUTOMAKE\([a-z ]*, *([0-9a-z\.-]+)
/) { print "$1\n"; exit(0)} } ; exit 1'
`
perl
-e
'while (<>) { if (/^A
C_INIT\(\[[a-zA-Z ]*\], *\[([0-9a-zA-Z\.-]+)\]
/) { print "$1\n"; exit(0)} } ; exit 1'
`
echo
Version string:
$VER
.
# Remove '-maria
-
' from version number
VER_NO_MARIA
=
${
VER
/
maria-
/
}
# Remove '-maria
DB
' from version number
VER_NO_MARIA
=
${
VER
/
-MariaDB
/
}
# We want the final zip to be named like this:
# mariadb-noinstall-5.1.38-win32.zip
...
...
@@ -48,28 +47,28 @@ sh -x scripts/make_win_bin_dist $ZIPCONTENT
mv
$ZIPCONTENT
.zip
$ZIPFILE
rm
-rf
unpack
mkdir
unpack
#
rm -rf unpack
#
mkdir unpack
cd
unpack
wget
-O
base.list.gz
\
http://askmonty.org/wiki/images/5/57/Mariadb-5.1-pre-beta-file-list-r2.txt.gz
gunzip
base.list.gz
unzip ../
$ZIPFILE
(
cd
$ZIPCONTENT
;
/bin/find
.
|
sort
)
>
new.list
#
cd unpack
#
wget -O base.list.gz \
#
http://askmonty.org/wiki/images/5/57/Mariadb-5.1-pre-beta-file-list-r2.txt.gz
#
gunzip base.list.gz
#
unzip ../$ZIPFILE
#
(cd $ZIPCONTENT; /bin/find . | sort ) > new.list
diff
-u
base.list new.list
||
true
RES
=
$?
#
diff -u base.list new.list || true
#
RES=$?
cd
..
#cd ..
#rm -rf unpack
rm
-rf
unpack
ls
-lah
$ZIPFILE
echo
"
$ZIPFILE
is the Windows noinstall binary zip"
if
[
$RES
]
;
then
echo
"Archive contents differ from the standard file list, check the diff output above"
else
echo
"Archive contents match the standard list, OK"
fi
#if [ $RES ] ; then
# echo "Archive contents differ from the standard file list, check the diff output above"
#else
# echo "Archive contents match the standard list, OK"
#fi
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