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
f5c75d88
Commit
f5c75d88
authored
Mar 15, 2009
by
Avuton Olrich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure: Move encoders to their own report section.
parent
a672cf1c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
18 deletions
+24
-18
configure.ac
configure.ac
+24
-18
No files found.
configure.ac
View file @
f5c75d88
...
...
@@ -1105,6 +1105,12 @@ else
echo " FIFO support ..................disabled"
fi
if test x$enable_httpd_output = xyes; then
echo " HTTP daemon support ...........enabled"
else
echo " HTTP daemon support ...........disabled"
fi
if test x$enable_jack = xyes; then
echo " JACK support ..................enabled"
else
...
...
@@ -1149,28 +1155,10 @@ fi
if test x$enable_shout = xyes; then
echo " SHOUTcast support .............enabled"
if test x$enable_lame_encoder = xyes; then
echo " with LAME mp3 encoder .......enabled"
else
echo " with LAME mp3 encoder .......disabled"
fi
if test x$enable_oggvorbis_encoder = xyes; then
echo " with Ogg Vorbis encoder .....enabled"
else
echo " with Ogg Vorbis encoder .....disabled"
fi
else
echo " SHOUTcast support .............disabled"
fi
if test x$enable_httpd_output = xyes; then
echo " HTTP daemon support ...........enabled"
else
echo " HTTP daemon support ...........disabled"
fi
echo ""
if
...
...
@@ -1188,6 +1176,24 @@ if
AC_MSG_ERROR([No Audio Output types configured!])
fi
if
test x$enable_shout = xyes ||
test x$enable_httpd_output = xyes; then
echo " Streaming Encoder Support:"
if test x$enable_lame_encoder = xyes; then
echo " LAME mp3 encoder ..............enabled"
else
echo " LAME mp3 encoder ..............disabled"
fi
if test x$enable_oggvorbis_encoder = xyes; then
echo " Ogg Vorbis encoder ............enabled"
else
echo " Ogg Vorbis encoder ............disabled"
fi
echo ""
fi
echo " File Format Support:"
if test x$enable_aac = xyes; then
...
...
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