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
e022fd8b
Commit
e022fd8b
authored
Jan 10, 2012
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-33 : removed unused files in win/
parent
efebb398
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
246 deletions
+0
-246
win/build-vs10.bat
win/build-vs10.bat
+0
-18
win/build-vs10_x64.bat
win/build-vs10_x64.bat
+0
-18
win/build_maria_release.bat
win/build_maria_release.bat
+0
-47
win/configure-mariadb.bat
win/configure-mariadb.bat
+0
-9
win/configure-mariadb.sh
win/configure-mariadb.sh
+0
-22
win/make_mariadb_win_dist
win/make_mariadb_win_dist
+0
-132
No files found.
win/build-vs10.bat
deleted
100644 → 0
View file @
efebb398
@echo
off
REM Copyright (C) 2010 Monty Program AB
REM
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
REM the Free Software Foundation; version 2 of the License.
REM
REM This program is distributed in the hope that it will be useful,
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
REM GNU General Public License for more details.
REM
REM You should have received a copy of the GNU General Public License
REM along with this program; if not, write to the Free Software
REM Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
cmake
-G
"Visual Studio 10"
win/build-vs10_x64.bat
deleted
100644 → 0
View file @
efebb398
@echo
off
REM Copyright (C) 2010 Monty Program AB
REM
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
REM the Free Software Foundation; version 2 of the License.
REM
REM This program is distributed in the hope that it will be useful,
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
REM GNU General Public License for more details.
REM
REM You should have received a copy of the GNU General Public License
REM along with this program; if not, write to the Free Software
REM Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
cmake
-G
"Visual Studio 10 Win64"
win/build_maria_release.bat
deleted
100644 → 0
View file @
efebb398
set
build_64_bit
=
set
build_msi
=
set
generator
=
set
scriptdir
=
%~dp0
:: Process all the arguments from the command line
::
:process
_arguments
if
"
%
~1"
==
""
goto
:do
_work
if
"
%
~1"
==
"-h"
goto
:help
if
"
%
~1"
==
"-msi"
set
build_msi
=
1
if
"
%
~1"
==
"-G"
set
generator
=
-G
"
%
~2"
shift
goto
:process
_arguments
:help
echo
"build_maria_release [-h] [-msi] [-G <Generator>]"
:die
echo
error
occured
.
popd
exit
/b
1
:do
_work
:: We're doing out-of-source build to ensure nobody has broken it:)
pushd
%scriptdir%
cd
..
rd
/s /q
xxx
mkdir
xxx
cd
xxx
cmake
..
-DWITH
_EMBEDDED_SERVER
=
1
%generator%
if
%ERRORLEVEL%
NEQ
0
goto
:die
cmake
-
-build
.
-
-config
Debug
if
%ERRORLEVEL%
NEQ
0
goto
:die
cmake
-
-build
.
-
-config
RelWithDebInfo
-
-target
package
if
%ERRORLEVEL%
NEQ
0
goto
:die
if
"
%build_msi%
"
==
"1"
(
cmake
-
-build
.
-
-config
RelWithDebInfo
-
-target
win
\packaging\msi
if
%ERRORLEVEL%
NEQ
0
goto
:die
)
xcopy
/y
*
.zip ..
xcopy
/y
*
.msi ..
popd
\ No newline at end of file
win/configure-mariadb.bat
deleted
100644 → 0
View file @
efebb398
cscript
win
\configure.js
^
WITH_EXAMPLE_STORAGE_ENGINE
^
WITH_FEDERATEDX_STORAGE_ENGINE
^
WITH_MERGE_STORAGE_ENGINE
^
WITH_PARTITION_STORAGE_ENGINE
^
WITH_ARIA_STORAGE_ENGINE
^
WITH_PBXT_STORAGE_ENGINE
^
WITH_XTRADB_STORAGE_ENGINE
^
WITH_FEEDBACK_STORAGE_ENGINE
win/configure-mariadb.sh
deleted
100644 → 0
View file @
efebb398
#!/bin/sh
#
# This script is the "standard" way to configure MariaDB on Windows. To be
# used by buildbot slaves and release build script.
#
set
-e
cscript win/configure.js
\
WITH_ARCHIVE_STORAGE_ENGINE
\
WITH_BLACKHOLE_STORAGE_ENGINE
\
WITH_CSV_STORAGE_ENGINE
\
WITH_EXAMPLE_STORAGE_ENGINE
\
WITH_FEDERATEDX_STORAGE_ENGINE
\
WITH_MERGE_STORAGE_ENGINE
\
WITH_PARTITION_STORAGE_ENGINE
\
WITH_ARIA_STORAGE_ENGINE
\
WITH_PBXT_STORAGE_ENGINE
\
WITH_XTRADB_STORAGE_ENGINE
\
WITH_FEEDBACK_STORAGE_ENGINE
\
WITH_EMBEDDED_SERVER
win/make_mariadb_win_dist
deleted
100644 → 0
View file @
efebb398
#!/bin/sh
#
# This is a script that one needs to run in the source tarball to build
# a MariaDB release for Windows
#
set
-e
usage
()
{
cat
<<
EOF
Usage:
$0
[-h] [-64] [-nobuild]
-h, --help Show this help message.
-64 Build a 64 bit distribution.
-nobuild Don't run cmake and devenv, only do the packaging.
The default is to the builds and create 32 bit packages.
EOF
}
if
test
-f
win/build_maria_release.bat
then
cmd /c win
\\
build_maria_release.bat
"
$@
"
exit
$?
fi
# The default settings
CMAKE_GENERATOR
=
"Visual Studio 9 2008"
ARCH
=
"win32"
RUNBUILD
=
"yes"
parse_options
()
{
while
test
$#
-gt
0
do
case
"
$1
"
in
-64
)
CMAKE_GENERATOR
=
"Visual Studio 9 2008 Win64"
ARCH
=
"win64"
;;
-nobuild
)
RUNBUILD
=
"no"
;;
-h
|
--help
)
usage
exit
0
;;
*
)
echo
"Unknown option '
$1
'"
usage
exit
1
;;
esac
shift
done
}
########################################################################
if
test
!
-f
sql/mysqld.cc
then
echo
"You must run this script from the MySQL top-level directory"
exit
1
fi
if
[
!
-d
win/data
]
;
then
echo
This doesnt seem to be
source
tarball.
echo
This script should be run from the top directory of the
source
tarball
echo
that was produced by
'make dist'
exit
1
;
fi
parse_options
"
$@
"
set
-x
if
[
"
$RUNBUILD
"
==
"yes"
]
;
then
sh win/configure-mariadb.sh
cmake
-G
"
$CMAKE_GENERATOR
"
devenv.com MySQL.sln /build RelWithDebInfo
devenv.com MySQL.sln /build Debug
fi
VER
=
`
cat
configure.in |
perl
-e
'while (<>) { if (/^AC_INIT\(\[[a-zA-Z ]*\], *\[([0-9a-zA-Z\.-]+)\]/) { print "$1\n"; exit(0)} } ; exit 1'
`
echo
Version string:
$VER
.
# Remove '-mariaDB' 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
ZIPNAME
=
mariadb-noinstall-
$VER_NO_MARIA
-
$ARCH
ZIPFILE
=
$ZIPNAME
.zip
# The top directory inside the zip should be called like this:
# mariadb-5.1-38-$ARCH
ZIPCONTENT
=
mariadb-
$VER_NO_MARIA
-
$ARCH
# This will make $ZIPCONTENT.zip
sh
-x
scripts/make_win_bin_dist
$ZIPCONTENT
mv
$ZIPCONTENT
.zip
$ZIPFILE
#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
#diff -u base.list new.list || true
#RES=$?
#cd ..
#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
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