Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2012-09-17 11:05:00 +0400
committerRalph Giles <giles@thaumas.net>2012-09-17 11:05:00 +0400
commit3ef8a1661675395a15fa2a6d55bd2448dd3c486d (patch)
treed1d1dc72ea0af5e19dcdc43da506f1fc7e249669 /configure.ac
parentd47ddfb4724553533cf7bd2758b339329b483622 (diff)
Opus custom requires libm unconditionally.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 09837975..475449fb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -283,6 +283,11 @@ else
PC_BUILD="fixed-point"
PC_LIBM=
fi
+dnl opus_custom requires libm as well
+if test x$ac_enable_custom_modes = xyes; then
+ PC_BUILD="${PC_BUILD}, custom modes"
+ PC_LIBM=$LIBM
+fi
AC_SUBST([PC_BUILD])
AC_SUBST([PC_LIBM])