cmake: update to cmake-3.2.3, clean $HOST_*FLAGS to force cmake to prefer its internal headers then the toolchain ones

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2015-06-03 21:39:35 +02:00
parent 3d5b64464b
commit 52824b5fbd

View File

@ -17,12 +17,12 @@
################################################################################ ################################################################################
PKG_NAME="cmake" PKG_NAME="cmake"
PKG_VERSION="3.0.2" PKG_VERSION="3.2.3"
PKG_REV="1" PKG_REV="1"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="BSD" PKG_LICENSE="BSD"
PKG_SITE="http://www.cmake.org/" PKG_SITE="http://www.cmake.org/"
PKG_URL="http://www.cmake.org/files/v3.0/$PKG_NAME-$PKG_VERSION.tar.gz" PKG_URL="http://www.cmake.org/files/v3.2/$PKG_NAME-$PKG_VERSION.tar.gz"
PKG_DEPENDS_HOST="ccache:host" PKG_DEPENDS_HOST="ccache:host"
PKG_PRIORITY="optional" PKG_PRIORITY="optional"
PKG_SECTION="toolchain/devel" PKG_SECTION="toolchain/devel"
@ -36,6 +36,9 @@ configure_host() {
../configure --prefix=$ROOT/$TOOLCHAIN \ ../configure --prefix=$ROOT/$TOOLCHAIN \
--no-qt-gui --no-system-libs \ --no-qt-gui --no-system-libs \
-- \ -- \
-DCMAKE_C_FLAGS="-O2 -Wall -pipe -Wno-format-security" \
-DCMAKE_CXX_FLAGS="-O2 -Wall -pipe -Wno-format-security" \
-DCMAKE_EXE_LINKER_FLAGS="$HOST_LDFLAGS" \
-DBUILD_CursesDialog=0 -DBUILD_CursesDialog=0
} }