-
Notifications
You must be signed in to change notification settings - Fork 6
/
configure.ac
80 lines (56 loc) · 1.74 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
AC_PREREQ(2.52)
dnl initialize autoconf
AC_INIT([libdce], [1.0.0], [http://www.ti.com])
dnl define PACKAGE_VERSION_* variables
dnl AS_VERSION
dnl can autoconf find the source ?
AC_CONFIG_SRCDIR([dce.c])
dnl set the autotools aux directory
AC_CONFIG_AUX_DIR([config])
dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
AM_MAINTAINER_MODE
dnl sets host_*, target_ variables
AC_CANONICAL_SYSTEM
dnl initialize automake
AM_INIT_AUTOMAKE([foreign])
dnl use pretty build output with automake >= 1.11
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])],
[AM_DEFAULT_VERBOSITY=1
AC_SUBST(AM_DEFAULT_VERBOSITY)])
dnl find a compiler
AC_PROG_CC
AM_PROG_AS
AM_PROG_LIBTOOL
dnl *** autotools stuff ****
dnl allow for different autotools
dnl AS_AUTOTOOLS_ALTERNATE
dnl *** checks for platform ***
AC_DEFINE_UNQUOTED(CPU_`echo $target_cpu | tr a-z- A-Z_`,[1])
AC_DEFINE_UNQUOTED(OS_` echo $target_os | tr a-z- A-Z_`,[1])
dnl *** checks for programs ***
AC_PROG_INSTALL
dnl Check for pkgconfig first
AC_CHECK_PROG([HAVE_PKGCONFIG], [pkg-config], [yes], [no])
dnl *** checks for libraries ***
dnl Check for syslink
PKG_CHECK_MODULES([SYSLINK], [syslink])
dnl Check for tiler memmgr
PKG_CHECK_MODULES([MEMMGR], [libtimemmgr])
dnl *** checks for header files ***
dnl check if we have ANSI C header files
AC_HEADER_STDC
dnl *** checks for types/defines ***
dnl *** checks for structures ***
dnl *** checks for compiler characteristics ***
dnl *** checks for library functions ***
dnl *** checks for dependancy libraries ***
dnl *** set variables based on configure arguments ***
AC_CONFIG_FILES([
libdce.pc
Makefile
packages/codec_engine/Makefile
packages/ivahd_codecs/Makefile
packages/xdais/Makefile
packages/xdctools/Makefile
])
AC_OUTPUT