Configure: Moved check for Math lib to a dedicated M4 macro
[wmaker-crm.git] / m4 / wm_libmath.m4
blob3ff2c467371059c1f7102ca18798eb29f854a804
1 # wm_libmath.m4 - Macros to check proper libMath usage for WINGs
3 # Copyright (c) 2013 Christophe Curis
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License along
16 # with this program; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 # WM_CHECK_LIBM
20 # -------------
22 # Checks the needed library link flags needed to have math lib
23 # Sets variable LIBM with the appropriates flags
24 AC_DEFUN_ONCE([WM_CHECK_LIBM],
25 [AC_CHECK_FUNC(atan,
26     [LIBM=],
27     [AC_CHECK_LIB(m, [atan],
28         [LIBM=-lm],
29         [AC_MSG_WARN(Could not find Math library, you may experience problems)
30          LIBM=] )] ) dnl
31 AC_SUBST(LIBM) dnl