fdk-aac/configure.ac
Diego Elio Pettenò df77638da1 build: do not call AC_CANONICAL_HOST.
Unless configure uses $host there is no reason to call it directly.
2012-07-11 07:44:13 -07:00

27 lines
699 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- 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])
# 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