-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfigure.in
52 lines (47 loc) · 1.06 KB
/
configure.in
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
AC_INIT(tap, 1.01)
AC_CONFIG_SRCDIR(src/tap.c)
AM_INIT_AUTOMAKE([foreign])
AC_PROG_CC
AC_PROG_LIBTOOL
AC_PROG_INSTALL
# Checks for libraries
case "$host" in
*-*-*freebsd4*)
LDFLAGS="$LDFLAGS -pthread"
HAVE_LIBPTHREAD=1
;;
*)
AC_CHECK_LIB(pthread, main)
;;
esac
# Checks for header files
AC_HEADER_STDC
AC_CHECK_HEADERS([stdlib.h])
AC_CHECK_HEADERS([pthread.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
# Checks for library functions.
AC_FUNC_VPRINTF
AC_CHECK_FUNCS([atexit])
AC_CONFIG_FILES([Makefile
src/Makefile
tests/Makefile
tests/diag/Makefile
tests/fail/Makefile
tests/ok/Makefile
tests/ok/ok-hash/Makefile
tests/ok/ok-numeric/Makefile
tests/ok/ok/Makefile
tests/pass/Makefile
tests/plan/Makefile
tests/plan/no-tests/Makefile
tests/plan/no_plan/Makefile
tests/plan/not-enough-tests/Makefile
tests/plan/sane/Makefile
tests/plan/skip_all/Makefile
tests/plan/too-many-plans/Makefile
tests/plan/too-many-tests/Makefile
tests/skip/Makefile
tests/todo/Makefile
])
AC_OUTPUT