wmaker: Replaced local 'extern' definition by proper header include
[wmaker-crm.git] / m4 / wm_libmath.m4
blob8d056a2ea60f59ebb64287d2e2d18175049d77d5
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_HEADER([math.h], [],
26                  [AC_MSG_ERROR([header for math library not found])])
27 AC_CHECK_FUNC(atan,
28     [LIBM=],
29     [AC_CHECK_LIB(m, [atan],
30         [LIBM=-lm],
31         [AC_MSG_WARN(Could not find Math library, you may experience problems)
32          LIBM=] )] ) dnl
33 AC_SUBST(LIBM) dnl