comparison ext/openal-soft/configure.in @ 0:4a0efb7baf70

* Datasets becomes the new trunk and retires after that :-)
author mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
date Sun, 29 Jun 2008 18:44:17 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4a0efb7baf70
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ(2.61)
5 AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
6 AC_CONFIG_SRCDIR([config.h.in])
7 AC_CONFIG_HEADER([config.h])
8 AC_CHECK_HEADERS(stdint.h dlfcn.h)
9 AC_CHECK_HEADERS(alsa/asoundlib.h) #for alsa
10
11 AC_CHECK_FUNCS(strtof)
12 AC_CHECK_TYPE(int64_t)
13 AC_CHECK_SIZEOF(long)
14 AC_CHECK_SIZEOF(long long)
15 AC_CHECK_SIZEOF(uint)
16 AC_CHECK_SIZEOF(void *)
17
18 # need in checking separately
19 AC_CHECK_LIB(m, acosf)
20 AC_CHECK_LIB(m, sqrtf)
21
22 # Checks for programs.
23 #AC_PROG_CC
24
25 # Checks for libraries.
26
27 # Checks for header files.
28 #AC_HEADER_STDC
29 #AC_CHECK_HEADERS([fcntl.h float.h memory.h stdint.h stdlib.h string.h sys/ioctl.h sys/time.h unistd.h])
30
31 # Checks for typedefs, structures, and compiler characteristics.
32 #AC_C_CONST
33 #AC_C_INLINE
34 #AC_TYPE_INT64_T
35 #AC_TYPE_SIZE_T
36 #AC_HEADER_TIME
37 #AC_HEADER_STDBOOL
38
39 # Checks for library functions.
40 #AC_PROG_GCC_TRADITIONAL
41 #AC_FUNC_MALLOC
42 #AC_FUNC_REALLOC
43 #AC_FUNC_STRTOD
44 #AC_CHECK_FUNCS([gettimeofday memmove memset pow strcasecmp strchr strdup strerror strncasecmp strrchr strtol])
45
46 AC_OUTPUT