annotate src/libsndfile-1.0.27/M4/llrint.m4 @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents cd6cdf86811e
children
rev   line source
cannam@125 1 dnl @synopsis MN_C99_FUNC_LLRINT
cannam@125 2 dnl
cannam@125 3 dnl Check whether C99's llrint function is available.
cannam@125 4 dnl @version 1.1 Sep 30 2002
cannam@125 5 dnl @author Erik de Castro Lopo <erikd AT mega-nerd DOT com>
cannam@125 6 dnl
cannam@125 7 dnl Permission to use, copy, modify, distribute, and sell this file for any
cannam@125 8 dnl purpose is hereby granted without fee, provided that the above copyright
cannam@125 9 dnl and this permission notice appear in all copies. No representations are
cannam@125 10 dnl made about the suitability of this software for any purpose. It is
cannam@125 11 dnl provided "as is" without express or implied warranty.
cannam@125 12 dnl
cannam@125 13 AC_DEFUN([MN_C99_FUNC_LLRINT],
cannam@125 14 [AC_CACHE_CHECK(for llrint,
cannam@125 15 ac_cv_c99_llrint,
cannam@125 16 [
cannam@125 17 llrint_save_CFLAGS=$CFLAGS
cannam@125 18 CFLAGS="-lm"
cannam@125 19 AC_TRY_LINK([
cannam@125 20 #define _ISOC9X_SOURCE 1
cannam@125 21 #define _ISOC99_SOURCE 1
cannam@125 22 #define __USE_ISOC99 1
cannam@125 23 #define __USE_ISOC9X 1
cannam@125 24
cannam@125 25 #include <math.h>
cannam@125 26 #include <stdint.h>
cannam@125 27 ], int64_t x ; x = llrint(3.14159) ;, ac_cv_c99_llrint=yes, ac_cv_c99_llrint=no)
cannam@125 28
cannam@125 29 CFLAGS=$llrint_save_CFLAGS
cannam@125 30
cannam@125 31 ])
cannam@125 32
cannam@125 33 if test "$ac_cv_c99_llrint" = yes; then
cannam@125 34 AC_DEFINE(HAVE_LLRINT, 1,
cannam@125 35 [Define if you have C99's llrint function.])
cannam@125 36 fi
cannam@125 37 ])# MN_C99_FUNC_LLRINT
cannam@125 38