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

github.com/mumble-voip/celt-0.7.0.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2009-03-11 20:13:19 +0300
committerGregory Maxwell <greg@xiph.org>2009-03-11 20:13:19 +0300
commitc8e200b8d9aaae914af77d46eeabfa2258a5aa91 (patch)
tree7d730f1a22ea2e2b2389e7be81fae002bb76f1b0 /configure.ac
parent57a88994f8f72e160caaa20740ea170ed75f8b1e (diff)
Allow --without-ogg to address issue raised by Ian Davidson.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 82f1400..981fbf8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -66,7 +66,9 @@ AC_MSG_RESULT($has_alloca)
AC_CHECK_HEADERS(sys/soundcard.h sys/audioio.h)
-XIPH_PATH_OGG([tools="tools"], [tools=""])
+AS_IF([test "x$with_ogg" != xno],
+ [XIPH_PATH_OGG([tools="tools"], [tools=""])],
+ [tools=""])
AC_SUBST(tools)
AC_CHECK_LIB(m, sin)
@@ -169,7 +171,7 @@ AC_OUTPUT([Makefile libcelt/Makefile tests/Makefile
if test "x$tools" = "x"; then
echo "**IMPORTANT**"
-echo "You don't seem to have the development package for libogg (libogg-devel) installed. Only the library will be built (no encoder/decoder executable)"
+echo "You don't seem to have the development package for libogg (libogg-devel) available. Only the library will be built (no encoder/decoder executable)"
echo "You can download libogg from http://www.vorbis.com/download.psp"
fi