From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp44.i.mail.ru (smtp44.i.mail.ru [94.100.177.104]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 2C374445320 for ; Mon, 6 Jul 2020 12:56:26 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Mon, 6 Jul 2020 12:56:23 +0300 Message-Id: <9ec352617d81a5c1bad9512e4c03aeb4004095c6.1594029297.git.avtikhon@tarantool.org> Subject: [Tarantool-patches] [PATCH v1] Enable curl build with old cmake List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kirill Yukhin , Alexander Turenko Cc: tarantool-patches@dev.tarantool.org Blocked check if the current cmake of the older than 3.2...3.16 version to be able to build curl at the old OS: - CentOS 6 - CentOS 7 - Debian 8 - Ubuntu 14.04 Needed for tarantool/tarantool#4968 --- Github: https://github.com/tarantool/curl/tree/avtikhon/curl-7_71_1 Issue: https://github.com/tarantool/tarantool/issues/4968 CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5a1333397..7a0b12ebf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ # To check: # (From Daniel Stenberg) The cmake build selected to run gcc with -fPIC on my box while the plain configure script did not. # (From Daniel Stenberg) The gcc command line use neither -g nor any -O options. As a developer, I also treasure our configure scripts's --enable-debug option that sets a long range of "picky" compiler options. -cmake_minimum_required(VERSION 3.2...3.16 FATAL_ERROR) +#cmake_minimum_required(VERSION 3.2...3.16 FATAL_ERROR) set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake;${CMAKE_MODULE_PATH}") include(Utilities) -- 2.17.1