Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
780ce492
Commit
780ce492
authored
Apr 01, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.ac: renamed --enable-oggvorbis-encoder
Renamed --enable-oggvorbis-encoder to --enable-vorbis-encoder.
parent
e2ca6b15
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
configure.ac
configure.ac
+10
-10
No files found.
configure.ac
View file @
780ce492
...
...
@@ -515,10 +515,10 @@ dnl
dnl encoder plugins
dnl
AC_ARG_ENABLE(
ogg
vorbis-encoder,
AS_HELP_STRING([--enable-
ogg
vorbis-encoder],
[enable
support for ogg streaming
]),,
[enable_
ogg
vorbis_encoder=auto])
AC_ARG_ENABLE(vorbis-encoder,
AS_HELP_STRING([--enable-vorbis-encoder],
[enable
the Ogg Vorbis encoder
]),,
[enable_vorbis_encoder=auto])
AC_ARG_ENABLE(lame-encoder,
AS_HELP_STRING([--enable-lame-encoder],
...
...
@@ -949,11 +949,11 @@ else
need_encoder=no
# don't bother to check for encoder plugins
enable_
ogg
vorbis_encoder=no
enable_vorbis_encoder=no
enable_lame_encoder=no
fi
MPD_AUTO_PKG(
ogg
vorbis_encoder, VORBISENC, [vorbisenc],
MPD_AUTO_PKG(vorbis_encoder, VORBISENC, [vorbisenc],
[Ogg Vorbis encoder], [libvorbisenc not found])
if test x$enable_lame_encoder != xno; then
...
...
@@ -965,7 +965,7 @@ fi
AC_SUBST(LAME_CFLAGS)
AC_SUBST(LAME_LIBS)
if test x$enable_
ogg
vorbis_encoder != xno ||
if test x$enable_vorbis_encoder != xno ||
test x$enable_lame_encoder != xno; then
# at least one encoder plugin is enabled
enable_encoder=yes
...
...
@@ -1010,8 +1010,8 @@ fi
AM_CONDITIONAL(ENABLE_ENCODER, test x$enable_encoder = xyes)
AM_CONDITIONAL(ENABLE_VORBIS_ENCODER, test x$enable_
ogg
vorbis_encoder = xyes)
if test x$enable_
ogg
vorbis_encoder = xyes; then
AM_CONDITIONAL(ENABLE_VORBIS_ENCODER, test x$enable_vorbis_encoder = xyes)
if test x$enable_vorbis_encoder = xyes; then
AC_DEFINE(ENABLE_VORBIS_ENCODER, 1,
[Define to enable the vorbis encoder plugin])
fi
...
...
@@ -1246,7 +1246,7 @@ if
echo " LAME mp3 encoder ..............disabled"
fi
if test x$enable_
ogg
vorbis_encoder = xyes; then
if test x$enable_vorbis_encoder = xyes; then
echo " Ogg Vorbis encoder ............enabled"
else
echo " Ogg Vorbis encoder ............disabled"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment