X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=configure.ac;h=edb0637aeffdf3b65aa533586fb81fedfc5e4a69;hp=170289379cb0bdb319f0ee31ef501e3ad5982624;hb=1457610326a2f03878d310c15c1884e22eed92d2;hpb=39ef1da5509461b18beb5b8f16ff6118c20c0ac6 diff --git a/configure.ac b/configure.ac index 17028937..edb0637a 100644 --- a/configure.ac +++ b/configure.ac @@ -61,13 +61,18 @@ recv_errlist_objs="http_recv recv_common recv time string net dccp_recv recv_ldflags="" filter_cmdline_objs="filter.cmdline compress_filter.cmdline" -filter_errlist_objs="filter_chain wav compress filter string" +filter_errlist_objs="filter_chain wav compress filter string stdin stdout sched fd" filter_ldflags="" +audioc_cmdline_objs="audioc.cmdline" +audioc_errlist_objs="audioc string net fd" + audiod_cmdline_objs="audiod.cmdline grab_client.cmdline compress_filter.cmdline - http_recv.cmdline dccp_recv.cmdline" -audiod_errlist_objs="audiod exec close_on_fork signal string daemon stat net - time grab_client filter_chain wav compress http_recv dccp dccp_recv recv_common fd" + http_recv.cmdline dccp_recv.cmdline file_write.cmdline client.cmdline" +audiod_errlist_objs="audiod signal string daemon stat net + time grab_client filter_chain wav compress http_recv dccp dccp_recv + recv_common fd sched write_common file_writer audiod_command crypt + client_common" audiod_ldflags="" server_cmdline_objs="server.cmdline" @@ -76,11 +81,14 @@ server_errlist_objs="server mp3_afh afs command net string signal random_selecto ipc dccp dccp_send fd" server_ldflags="" -write_cmdline_objs="write.cmdline" +write_cmdline_objs="write.cmdline file_write.cmdline" write_errlist_objs="write write_common file_writer time fd string sched stdin" write_ldflags="" write_writers="file" +client_cmdline_objs="client.cmdline" +client_errlist_objs="client net string crypt fd sched stdin stdout client_common" +client_ldflags="" ########################################################################### ssl dnl @synopsis CHECK_SSL @@ -125,10 +133,12 @@ AC_DEFUN([CHECK_SSL], ])dnl AC_ARG_ENABLE(ssldir, [AS_HELP_STRING(--enable-ssldir=path, - [Search for openssl also in path.])]) + [Search for openssl also in path.])]) if test "$enable_ssldir" = "yes"; then enable_ssldir=""; fi CHECK_SSL($enable_ssldir) server_ldflags="$srver_ldflags $SSL_LDFLAGS $SSL_LIBS" +client_ldflags="$client_ldflags $SSL_LDFLAGS $SSL_LIBS" +audiod_ldflags="$audiod_ldflags $SSL_LDFLAGS $SSL_LIBS" ########################################################################### ucred @@ -263,7 +273,7 @@ else fi ########################################################################### alsa have_alsa="yes" -msg="=> no alsa support for para_write" +msg="=> no alsa support for para_audiod/para_write" AC_CHECK_HEADERS([alsa/asoundlib.h], [], [ AC_MSG_WARN([no alsa/asoundlib $msg]) have_alsa="no" @@ -273,7 +283,12 @@ AC_CHECK_LIB([asound], [snd_pcm_open], [], [ have_alsa="no" ]) if test "$have_alsa" = "yes"; then + audiod_errlist_objs="$audiod_errlist_objs alsa_writer" + audiod_cmdline_objs="$audiod_cmdline_objs alsa_write.cmdline" + audiod_ldflags="$audiod_ldflags -lasound" + write_errlist_objs="$write_errlist_objs alsa_writer" + write_cmdline_objs="$write_cmdline_objs alsa_write.cmdline" write_ldflags="$write_ldflags -lasound" write_writers="$write_writers alsa" fi @@ -347,6 +362,8 @@ filter_objs="$filter_cmdline_objs $filter_errlist_objs" audiod_objs="$audiod_cmdline_objs $audiod_errlist_objs" server_objs="$server_cmdline_objs $server_errlist_objs" write_objs="$write_cmdline_objs $write_errlist_objs" +client_objs="$client_cmdline_objs $client_errlist_objs" +audioc_objs="$audioc_cmdline_objs $audioc_errlist_objs" AC_SUBST(recv_objs, add_dot_o($recv_objs)) AC_SUBST(recv_ldflags, $recv_ldflags) @@ -373,6 +390,15 @@ AC_SUBST(write_ldflags, $write_ldflags) AC_DEFINE_UNQUOTED(INIT_WRITE_ERRLISTS, objlist_to_errlist($write_errlist_objs), errors used by para_write) +AC_SUBST(client_objs, add_dot_o($client_objs)) +AC_SUBST(client_ldflags, $client_ldflags) +AC_DEFINE_UNQUOTED(INIT_CLIENT_ERRLISTS, + objlist_to_errlist($client_errlist_objs), errors used by para_client) + +AC_SUBST(audioc_objs, add_dot_o($audioc_objs)) +AC_DEFINE_UNQUOTED(INIT_AUDIOC_ERRLISTS, + objlist_to_errlist($audioc_errlist_objs), errors used by para_audioc) + enum="$(for i in $write_writers; do printf "${i}_WRITE, " | tr '[a-z]' '[A-Z]'; done)" AC_DEFINE_UNQUOTED(WRITER_ENUM, $enum NUM_SUPPORTED_WRITERS, enum of supported writers)