From 458b70bbe697f6a2bb83038293c3a41727a3ddfd Mon Sep 17 00:00:00 2001 From: Gustavo Sverzut Barbieri Date: Sun, 30 Dec 2012 19:05:18 +0000 Subject: [PATCH] efl: minor AC_CHECK_LIB() cleanup. SVN revision: 81908 --- configure.ac | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 05fa67b333..2b1a3d5a75 100644 --- a/configure.ac +++ b/configure.ac @@ -1601,11 +1601,7 @@ AC_CHECK_TYPES([struct sigaction], [], [], AC_CHECK_FUNCS([siglongjmp]) -res=no -AC_CHECK_LIB([m], [lround], [res=yes], [res=no]) -if test "x${res}" = "xyes" ; then - AC_DEFINE([HAVE_LROUND], [1], [C99 lround function exists]) -fi +AC_CHECK_LIB([m], [lround], [AC_DEFINE([HAVE_LROUND], [1], [C99 lround function exists])]) if test "x${want_evas_image_loader_generic}" = "xyes" || test "x${want_evas_cserve2}" = "xyes" ; then EFL_CHECK_FUNC([EVAS], [shm_open])