File: configure.ac

package info (click to toggle)
sbc 1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,640 kB
  • ctags: 588
  • sloc: sh: 11,090; ansic: 5,056; makefile: 52
file content (69 lines) | stat: -rw-r--r-- 1,823 bytes parent folder | download
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
AC_PREREQ(2.60)
AC_INIT(sbc, 1.3)

AM_INIT_AUTOMAKE([foreign subdir-objects color-tests])
AC_CONFIG_HEADERS(config.h)

m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])

AM_MAINTAINER_MODE

AC_PREFIX_DEFAULT(/usr/local)

COMPILER_FLAGS

AC_LANG_C

AC_PROG_CC
AC_PROG_CC_PIE
AC_PROG_INSTALL

LT_INIT

AC_ARG_ENABLE(optimization, AC_HELP_STRING([--disable-optimization],
			[disable code optimization through compiler]), [
	if (test "${enableval}" = "no"); then
		CFLAGS="$CFLAGS -O0"
	fi
])

AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug],
			[enable compiling with debugging information]), [
	if (test "${enableval}" = "yes" &&
				test "${ac_cv_prog_cc_g}" = "yes"); then
		CFLAGS="$CFLAGS -g"
	fi
])

AC_ARG_ENABLE(pie, AC_HELP_STRING([--enable-pie],
			[enable position independent executables flag]), [
	if (test "${enableval}" = "yes" &&
				test "${ac_cv_prog_cc_pie}" = "yes"); then
		CFLAGS="$CFLAGS -fPIE"
		LDFLAGS="$LDFLAGS -pie"
	fi
])

AC_ARG_ENABLE(high-precision, AC_HELP_STRING([--enable-high-precision],
					[enable SBC high precision support]),
					[enable_high_precision=${enableval}])
if (test "${enable_high_precision}" = "yes"); then
	AC_DEFINE(SBC_HIGH_PRECISION, 1,
		[Define to 1 to enable high precision build of SBC encoder])
fi

AC_ARG_ENABLE(tools, AC_HELP_STRING([--disable-tools],
		[disable SBC tools]), [enable_tools=${enableval}])
AM_CONDITIONAL(TOOLS, test "${enable_tools}" != "no")

AC_ARG_ENABLE(tester, AC_HELP_STRING([--disable-tester],
		[disable SBC tester]), [enable_tester=${enableval}])
if (test "${enable_tester}" != "no"); then
	PKG_CHECK_MODULES(SNDFILE, sndfile, dummy=yes,
				AC_MSG_ERROR(sndfile library is required))
	AC_SUBST(SNDFILE_CFLAGS)
	AC_SUBST(SNDFILE_LIBS)
fi
AM_CONDITIONAL(TESTER, test "${enable_tester}" != "no")

AC_OUTPUT(Makefile sbc/sbc.pc)