wxWidgets: update to 3.0.3.
This commit is contained in:
parent
988c0cb066
commit
c0b05b4ed8
|
@ -1,14 +0,0 @@
|
||||||
--- src/stc/scintilla/src/Editor.cxx 2014-10-06 23:33:44.000000000 +0200
|
|
||||||
+++ src/stc/scintilla/src/Editor.cxx 2016-09-18 15:34:29.359258750 +0200
|
|
||||||
@@ -5841,9 +5841,9 @@
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool Close(Point pt1, Point pt2) {
|
|
||||||
- if (abs(pt1.x - pt2.x) > 3)
|
|
||||||
+ if (abs(static_cast<int>(pt1.x - pt2.x)) > 3)
|
|
||||||
return false;
|
|
||||||
- if (abs(pt1.y - pt2.y) > 3)
|
|
||||||
+ if (abs(static_cast<int>(pt1.y - pt2.y)) > 3)
|
|
||||||
return false;
|
|
||||||
return true;
|
|
||||||
}
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'wxWidgets'
|
# Template file for 'wxWidgets'
|
||||||
pkgname=wxWidgets
|
pkgname=wxWidgets
|
||||||
version=3.0.2
|
version=3.0.3
|
||||||
revision=6
|
revision=1
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--enable-unicode --with-opengl --with-sdl --with-libmspack
|
configure_args="--enable-unicode --with-opengl --with-sdl --with-libmspack
|
||||||
--with-libnotify"
|
--with-libnotify"
|
||||||
|
@ -12,8 +12,8 @@ homepage="http://www.wxwidgets.org/"
|
||||||
hostmakedepends="pkg-config"
|
hostmakedepends="pkg-config"
|
||||||
makedepends="gtk+-devel libjpeg-turbo-devel tiff-devel libSM-devel libnotify-devel
|
makedepends="gtk+-devel libjpeg-turbo-devel tiff-devel libSM-devel libnotify-devel
|
||||||
libXinerama-devel libmspack-devel SDL-devel glu-devel webkitgtk2-devel"
|
libXinerama-devel libmspack-devel SDL-devel glu-devel webkitgtk2-devel"
|
||||||
distfiles="${SOURCEFORGE_SITE}/wxwindows/${version}/${pkgname}-${version}.tar.bz2"
|
distfiles="https://github.com/wxWidgets/wxWidgets/releases/download/v${version}/wxWidgets-${version}.tar.bz2"
|
||||||
checksum=346879dc554f3ab8d6da2704f651ecb504a22e9d31c17ef5449b129ed711585d
|
checksum=08c8033f48ec1b23520f036cde37b5ae925a6a65f137ded665633ca159b9307b
|
||||||
|
|
||||||
# Cross compiling works, but then wx-config is wrong for native builds
|
# Cross compiling works, but then wx-config is wrong for native builds
|
||||||
# on target.
|
# on target.
|
||||||
|
|
Loading…
Reference in New Issue