forked from freemint/fdlibm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigure.in
More file actions
28 lines (21 loc) · 696 Bytes
/
configure.in
File metadata and controls
28 lines (21 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
dnl Process this file with autoconf to produce a configure script.
AC_INIT(fdlibm, , [freemint-discuss@lists.sourceforge.net], , [https://github.com/freemint/fdlibm])
AC_PREREQ(2.52)
AC_CONFIG_SRCDIR([include/fdlibm.h])
AC_CONFIG_AUX_DIR([config-aux])
dnl Canonical system information.
AC_CANONICAL_HOST
dnl Checks for programs.
AC_PROG_CC
AC_PROG_RANLIB
AC_CHECK_TOOL(AR, ar)
if test "$AR" = ""; then AC_MSG_ERROR([ar missing]); fi
dnl Checks for libraries.
dnl Checks for header files.
AC_CHECK_HEADERS(unistd.h)
AC_CHECK_LIB(m, cos)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
dnl Checks for library functions.
AC_SUBST(ac_aux_dir)
AC_OUTPUT(Makefile)