-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathconfigure.ac
34 lines (27 loc) · 820 Bytes
/
configure.ac
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
29
30
31
32
33
34
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([itc-benchmarks], [1.0], [https://github.com/regehr/itc-benchmarks/issues])
AC_CONFIG_SRCDIR([01.w_Defects/memory_leak.c])
AM_INIT_AUTOMAKE
AC_CONFIG_FILES([
Makefile
01.w_Defects/Makefile
02.wo_Defects/Makefile
04.wo_Defects_Cpp/Makefile
03.w_Defects_Cpp/Makefile
])
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
# Checks for libraries.
# Checks for header files.
AC_CHECK_HEADERS([netinet/in.h stdlib.h string.h sys/socket.h unistd.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_CHECK_HEADER_STDBOOL
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
# Checks for library functions.
AC_FUNC_MALLOC
AC_CHECK_FUNCS([floor memset pow socket])
AC_OUTPUT