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
45336807
Commit
45336807
authored
Aug 29, 2011
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.ac: add OpenSSL check for RAOP output plugin
Auto-enable the plugin when OpenSSL was found.
parent
6e3b643b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
Makefile.am
Makefile.am
+2
-0
configure.ac
configure.ac
+5
-3
No files found.
Makefile.am
View file @
45336807
...
...
@@ -689,6 +689,7 @@ OUTPUT_CFLAGS = \
$(FFADO_CFLAGS)
\
$(JACK_CFLAGS)
\
$(OPENAL_CFLAGS)
\
$(OPENSSL_CFLAGS)
\
$(PULSE_CFLAGS)
\
$(SHOUT_CFLAGS)
...
...
@@ -777,6 +778,7 @@ OUTPUT_SRC += \
src/ntp_server.c src/ntp_server.h
\
src/output/raop_output_plugin.c
MIXER_SRC
+=
src/mixer/raop_mixer_plugin.c
OUTPUT_LIBS
+=
$(OPENSSL_LIBS)
endif
if
HAVE_PULSE
...
...
configure.ac
View file @
45336807
...
...
@@ -213,7 +213,7 @@ AC_ARG_ENABLE(httpd-output,
AC_ARG_ENABLE(raop-output,
AS_HELP_STRING([--enable-raop-output],
[enables the RAOP output]),,
[enable_raop_output=
n
o])
[enable_raop_output=
aut
o])
AC_ARG_ENABLE(id3,
AS_HELP_STRING([--disable-id3],
...
...
@@ -1441,9 +1441,11 @@ AM_CONDITIONAL(ENABLE_SOLARIS_OUTPUT, test x$enable_solaris_output = xyes)
dnl --------------------------------- RAOP ------------------------------------
MPD_AUTO_PKG(raop_output, OPENSSL, [openssl],
[RAOP output], [OpenSSL not found])
if test x$enable_raop_output = xyes; then
AC_DEFINE(ENABLE_RAOP_OUTPUT, 1, [Define for compiling RAOP support])
MPD_LIBS="$MPD_LIBS -lssl -lcrypto"
AC_DEFINE(ENABLE_RAOP_OUTPUT, 1, [Define for compiling RAOP support])
fi
AM_CONDITIONAL(ENABLE_RAOP_OUTPUT, test x$enable_raop_output = xyes)
...
...
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