comparison src/macros.h @ 30310:029c59bf78f1 v9.0.0491

patch 9.0.0491: no good reason to build without the float feature Commit: https://github.com/vim/vim/commit/73e28dcc6125f616cf1f2d56443d22428a79e434 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 17 21:08:33 2022 +0100 patch 9.0.0491: no good reason to build without the float feature Problem: No good reason to build without the float feature. Solution: Remove configure check for float and "#ifdef FEAT_FLOAT".
author Bram Moolenaar <Bram@vim.org>
date Sat, 17 Sep 2022 22:15:05 +0200
parents d0241e74bfdb
children f0afaca0bf74
comparison
equal deleted inserted replaced
30309:4ba3d27b5357 30310:029c59bf78f1
259 259
260 #if defined(FEAT_JOB_CHANNEL) || defined(FEAT_CLIENTSERVER) 260 #if defined(FEAT_JOB_CHANNEL) || defined(FEAT_CLIENTSERVER)
261 # define MESSAGE_QUEUE 261 # define MESSAGE_QUEUE
262 #endif 262 #endif
263 263
264 #if defined(FEAT_EVAL) && defined(FEAT_FLOAT) 264 #if defined(FEAT_EVAL)
265 # include <float.h> 265 # include <float.h>
266 # if defined(HAVE_MATH_H) 266 # if defined(HAVE_MATH_H)
267 // for isnan() and isinf() 267 // for isnan() and isinf()
268 # include <math.h> 268 # include <math.h>
269 # endif 269 # endif