aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
blob: e9b1b9c0a5ef114965a753bfed1a2b469cbd9a05 (plain)
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
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_INIT([fdk-aac], [0.1.0], [http://sourceforge.net/projects/opencore-amr/])
AC_CONFIG_AUX_DIR(.)
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([tar-ustar])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_CONFIG_HEADERS([config.h])

# Cross compiling support
AC_CANONICAL_HOST

# Checks for programs.
AC_PROG_CXX

# Setup for libtool
AC_PROG_LIBTOOL
AC_SUBST(LIBTOOL_DEPS)

# soname version to use
# goes by ‘current[:revision[:age]]’ with the soname ending up as
# current.age.revision.
FDK_AAC_VERSION=0:1:0
AC_SUBST(FDK_AAC_VERSION)

AC_CONFIG_FILES([Makefile
                 fdk-aac.pc])
AC_OUTPUT