summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@flameeyes.eu>2012-07-11 07:45:09 -0700
committerDiego Elio Pettenò <flameeyes@flameeyes.eu>2012-07-11 07:45:09 -0700
commit40f4e738e43c850dfdb019ac83db84063c3aa8ae (patch)
tree6990c9435afb14860cc02df7ac085bbf721212b7 /configure.ac
parentdf77638da16ee4ce7c25540fb0411c0857b53e12 (diff)
downloadODR-AudioEnc-40f4e738e43c850dfdb019ac83db84063c3aa8ae.tar.gz
ODR-AudioEnc-40f4e738e43c850dfdb019ac83db84063c3aa8ae.tar.bz2
ODR-AudioEnc-40f4e738e43c850dfdb019ac83db84063c3aa8ae.zip
build: use dnl for comments in configure.ac
This simply means the comments are not copied into the executed configure script.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac14
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index 5e4fbd7..143137f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
-# -*- Autoconf -*-
-# Process this file with autoconf to produce a configure script.
+dnl -*- Autoconf -*-
+dnl 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(.)
@@ -8,16 +8,16 @@ AM_INIT_AUTOMAKE([tar-ustar])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AC_CONFIG_HEADERS([config.h])
-# Checks for programs.
+dnl Checks for programs.
AC_PROG_CXX
-# Setup for libtool
+dnl 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.
+dnl soname version to use
+dnl goes by ‘current[:revision[:age]]’ with the soname ending up as
+dnl current.age.revision
FDK_AAC_VERSION=0:1:0
AC_SUBST(FDK_AAC_VERSION)