Mercurial > hg > sv-dependency-builds
annotate src/libsamplerate-0.1.8/M4/lrint.m4 @ 0:c7265573341e
Import initial set of sources
author | Chris Cannam |
---|---|
date | Mon, 18 Mar 2013 14:12:14 +0000 |
parents | |
children |
rev | line source |
---|---|
Chris@0 | 1 dnl @synopsis AC_C99_FUNC_LRINT |
Chris@0 | 2 dnl |
Chris@0 | 3 dnl Check whether C99's lrint function is available. |
Chris@0 | 4 dnl @version 1.3 Feb 12 2002 |
Chris@0 | 5 dnl @author Erik de Castro Lopo <erikd AT mega-nerd DOT com> |
Chris@0 | 6 dnl |
Chris@0 | 7 dnl Permission to use, copy, modify, distribute, and sell this file for any |
Chris@0 | 8 dnl purpose is hereby granted without fee, provided that the above copyright |
Chris@0 | 9 dnl and this permission notice appear in all copies. No representations are |
Chris@0 | 10 dnl made about the suitability of this software for any purpose. It is |
Chris@0 | 11 dnl provided "as is" without express or implied warranty. |
Chris@0 | 12 dnl |
Chris@0 | 13 AC_DEFUN([AC_C99_FUNC_LRINT], |
Chris@0 | 14 [AC_CACHE_CHECK(for lrint, |
Chris@0 | 15 ac_cv_c99_lrint, |
Chris@0 | 16 [ |
Chris@0 | 17 lrint_save_CFLAGS=$CFLAGS |
Chris@0 | 18 CFLAGS="-lm" |
Chris@0 | 19 AC_TRY_LINK([ |
Chris@0 | 20 #define _ISOC9X_SOURCE 1 |
Chris@0 | 21 #define _ISOC99_SOURCE 1 |
Chris@0 | 22 #define __USE_ISOC99 1 |
Chris@0 | 23 #define __USE_ISOC9X 1 |
Chris@0 | 24 |
Chris@0 | 25 #include <math.h> |
Chris@0 | 26 ], if (!lrint(3.14159)) lrint(2.7183);, ac_cv_c99_lrint=yes, ac_cv_c99_lrint=no) |
Chris@0 | 27 |
Chris@0 | 28 CFLAGS=$lrint_save_CFLAGS |
Chris@0 | 29 |
Chris@0 | 30 ]) |
Chris@0 | 31 |
Chris@0 | 32 if test "$ac_cv_c99_lrint" = yes; then |
Chris@0 | 33 AC_DEFINE(HAVE_LRINT, 1, |
Chris@0 | 34 [Define if you have C99's lrint function.]) |
Chris@0 | 35 fi |
Chris@0 | 36 ])# AC_C99_FUNC_LRINT |
Chris@0 | 37 |