Some other preprocessor directives for windows
[leqm-nrt.git] / configure.scan
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ([2.69])
5 AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
6 AC_CONFIG_SRCDIR([config.h.in])
7 AC_CONFIG_HEADERS([config.h])
8
9 # Checks for programs.
10 AC_PROG_CC
11
12 # Checks for libraries.
13
14 # Checks for header files.
15 AC_CHECK_HEADERS([stdlib.h string.h unistd.h])
16
17 # Checks for typedefs, structures, and compiler characteristics.
18
19 # Checks for library functions.
20 AC_FUNC_MALLOC
21 AC_CHECK_FUNCS([clock_gettime memset pow])
22
23 AC_CONFIG_FILES([Makefile
24                  src/Makefile])
25 AC_OUTPUT