parent
e13e290490
commit
11b523f25d
@ -1 +1 @@
|
|||||||
/wine-mono-4.6.4.tar.gz
|
/wine-mono-4.7.0.tar.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
SHA512 (wine-mono-4.6.4.tar.gz) = 7c77865f8b72e27650fd4edbfe9324139e940ba67428630562f8baa654bb9f855a7cb6cfd644142cf5cfb3c7470ad28fd4f0d267be89a9ce602ac054d8e3dda3
|
SHA512 (wine-mono-4.7.0.tar.gz) = 1540ead9eb04e0c692211151418afc32e51cc735714ae5d10d4ec7004fe28c0ec6efc0bbab4310d49fdef2df274383fcab9b5d6558b79bab464ba028bc49849a
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
--- wine-mono-4.5.4/build-winemono.sh.orig 2014-11-14 18:02:57.810439383 +0100
|
--- wine-mono-4.5.4/build-winemono.sh.orig 2014-11-14 18:02:57.810439383 +0100
|
||||||
+++ wine-mono-4.5.4/build-winemono.sh 2014-11-14 18:03:20.583738750 +0100
|
+++ wine-mono-4.5.4/build-winemono.sh 2014-11-14 18:03:20.583738750 +0100
|
||||||
@@ -9,7 +9,7 @@
|
@@ -434,7 +434,7 @@
|
||||||
ORIGINAL_PATH="$PATH"
|
|
||||||
REBUILD=0
|
build_msi ()
|
||||||
WINE=${WINE:-`which wine`}
|
{
|
||||||
-MSIFILENAME=winemono.msi
|
- MSIFILENAME=$OUTDIR/winemono.msi
|
||||||
+MSIFILENAME=${MSIFILENAME:-winemono.msi}
|
+ MSIFILENAME=${MSIFILENAME:-winemono.msi}
|
||||||
BUILD_TESTS=0
|
rm -rf cab-contents
|
||||||
USE_MONOLITE=0
|
rm -f "$BUILDDIR/image.cab" "${MSIFILENAME}"
|
||||||
|
|
||||||
|
@ -1,18 +1,26 @@
|
|||||||
--- wine-mono-4.5.6/build-winemono.sh.orig 2015-04-20 10:34:32.150114394 -0500
|
--- wine-mono-4.5.6/build-winemono.sh.orig 2015-04-20 10:34:32.150114394 -0500
|
||||||
+++ wine-mono-4.5.6/build-winemono.sh 2015-04-20 10:33:13.699274928 -0500
|
+++ wine-mono-4.5.6/build-winemono.sh 2015-04-20 10:33:13.699274928 -0500
|
||||||
@@ -63,6 +63,7 @@
|
@@ -72,6 +72,7 @@
|
||||||
cd "$CURDIR/build-cross-$ARCH"
|
cd "$BUILDDIR/build-cross-$ARCH"
|
||||||
if test 1 != $REBUILD || test ! -e Makefile; then
|
if test 1 != $REBUILD || test ! -e Makefile; then
|
||||||
CPPFLAGS="-gdwarf-2 -gstrict-dwarf" ../mono/configure --prefix="$CURDIR/build-cross-$ARCH-install" --build=$BUILD --target=$MINGW --host=$MINGW --with-tls=none --disable-mcs-build --enable-win32-dllmain=yes --with-libgc-threads=win32 PKG_CONFIG=false mono_cv_clang=no || exit 1
|
CPPFLAGS="-gdwarf-2 -gstrict-dwarf" "$SRCDIR"/mono/configure --prefix="$BUILDDIR/build-cross-$ARCH-install" --build=$BUILD --target=$MINGW --host=$MINGW --with-tls=none --disable-mcs-build --enable-win32-dllmain=yes --with-libgc-threads=win32 PKG_CONFIG=false mono_cv_clang=no || exit 1
|
||||||
+ sed -e 's+compiler_flags="-specs=/usr/lib/rpm/redhat/redhat-hardened-ld"+compiler_flags="-static"+' -i libtool
|
+ sed -e 's+compiler_flags="-specs=/usr/lib/rpm/redhat/redhat-hardened-ld"+compiler_flags="-static"+' -i libtool
|
||||||
sed -e 's/-lgcc_s//' -i libtool
|
sed -e 's/-lgcc_s//' -i libtool
|
||||||
fi
|
fi
|
||||||
WINEPREFIX=/dev/null make $MAKEOPTS || exit 1
|
WINEPREFIX=/dev/null make $MAKEOPTS || exit 1
|
||||||
@@ -109,6 +110,7 @@
|
@@ -118,6 +119,7 @@
|
||||||
cd "$CURDIR/build-cross-cli"
|
cd "$BUILDDIR/build-cross-cli"
|
||||||
if test 1 != $REBUILD || test ! -e Makefile; then
|
if test 1 != $REBUILD || test ! -e Makefile; then
|
||||||
../mono/configure --prefix="$CURDIR/build-cross-cli-install" --with-mcs-docs=no --disable-system-aot || exit 1
|
"$SRCDIR"/mono/configure --prefix="$BUILDDIR/build-cross-cli-install" --with-mcs-docs=no --disable-system-aot || exit 1
|
||||||
+ sed -e 's+compiler_flags="-specs=/usr/lib/rpm/redhat/redhat-hardened-ld"+compiler_flags="-static"+' -i libtool
|
+ sed -e 's+compiler_flags="-specs=/usr/lib/rpm/redhat/redhat-hardened-ld"+compiler_flags="-static"+' -i libtool
|
||||||
fi
|
fi
|
||||||
if test 1 = $USE_MONOLITE; then
|
if test 1 = $USE_MONOLITE; then
|
||||||
make get-monolite-latest || exit 1
|
make get-monolite-latest || exit 1
|
||||||
|
@@ -172,6 +174,7 @@
|
||||||
|
# build mono-basic
|
||||||
|
cd "$SRCDIR/mono-basic"
|
||||||
|
./configure --prefix="$BUILDDIR/build-cross-cli-install" || exit 1
|
||||||
|
+ sed -e 's+compiler_flags="-specs=/usr/lib/rpm/redhat/redhat-hardened-ld"+compiler_flags="-static"+' -i libtool
|
||||||
|
make $MAKEOPTS || exit 1
|
||||||
|
make install || exit 1
|
||||||
|
|
||||||
|
Loading…
Reference in new issue