X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=configure.ac;h=3e6e91a55ea0dfcfeb25b9afe7f9e3168c99fecd;hp=698467893104a2362f43dd36121a8973faff5c1c;hb=7c3bec32f4a34753a40e2c22086ce2353e8a7b9c;hpb=780f86d5f849308b5100b087c6b223a6deef1dd7 diff --git a/configure.ac b/configure.ac index 69846789..3e6e91a5 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ AC_HEADER_DIRENT AC_HEADER_STDC AC_HEADER_SYS_WAIT AC_CHECK_HEADERS([arpa/inet.h ctype.h fcntl.h limits.h netdb.h netinet/in.h stdlib.h \ - string.h sys/socket.h sys/time.h sys/timeb.h sys/un.h sys/ipc.h unistd.h utime.h malloc.h], \ + string.h sys/socket.h sys/time.h sys/timeb.h sys/un.h sys/ipc.h unistd.h utime.h], \ [], [AC_MSG_ERROR([$ac_header not found])]) AC_CHECK_HEADER(linux/soundcard.h, [extras="$extras para_fade"], @@ -57,30 +57,38 @@ AC_CHECK_LIB([menu], [new_menu], [extras="$extras para_dbadm"], recv_cmdline_objs="recv.cmdline http_recv.cmdline dccp_recv.cmdline" recv_errlist_objs="http_recv recv_common recv time string net dccp_recv - dccp fd" + dccp fd sched stdout" 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" -server_errlist_objs="server mp3 afs command net string signal random_selector +server_errlist_objs="server mp3_afh afs command net string signal random_selector time daemon stat crypt http_send db close_on_fork playlist_selector ipc dccp dccp_send fd" server_ldflags="" -write_cmdline_objs="write.cmdline" -write_errlist_objs="write write_common file_writer time fd string" +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 @@ -162,6 +172,18 @@ AC_CHECK_HEADER(SDL/SDL.h, [], ########################################################################### mysql have_mysql="yes" +AC_ARG_ENABLE(mysql_headers, [AC_HELP_STRING(--enable-mysql-headers=dir, + [look for mysql.h also in dir])]) +if test -n "$enable_mysql_headers"; then + mysql_cppflags="-I$enable_mysql_headers" + CPPFLAGS="$CPPFLAGS $mysql_cppflags" +fi +AC_ARG_ENABLE(mysql_libs, [AC_HELP_STRING(--enable-mysql-libs=dir, + [look for libmysqlclient also in dir])]) +if test -n "$enable_mysql_libs"; then + mysql_libs="-L$enable_mysql_libs" + LDFLAGS="$LDFLAGS $mysql_libs" +fi AC_CHECK_HEADER(mysql/mysql.h, [], [ have_mysql="no" ]) @@ -169,8 +191,10 @@ AC_CHECK_LIB([mysqlclient], [mysql_init], [], [ have_mysql="no" ]) if test "$have_mysql" = "yes"; then - server_ldflags="$server_ldflags -lmysqlclient" + server_ldflags="$server_ldflags $mysql_libs -lmysqlclient" server_errlist_objs="$server_errlist_objs mysql_selector" + AC_SUBST(mysql_cppflags) + AC_SUBST(mysql_libs) AC_DEFINE(HAVE_MYSQL, 1, [define to 1 to turn on mysql support]) else AC_MSG_WARN([cannot build mysql-based audio file selector]) @@ -195,12 +219,41 @@ if test "$have_ogg" = "yes"; then filter_cmdline_objs="$filter_cmdline_objs oggdec_filter.cmdline" audiod_cmdline_objs="$audiod_cmdline_objs oggdec_filter.cmdline" - server_errlist_objs="$server_errlist_objs ogg" + server_errlist_objs="$server_errlist_objs ogg_afh" filter_errlist_objs="$filter_errlist_objs oggdec" audiod_errlist_objs="$audiod_errlist_objs oggdec" else AC_MSG_WARN([no ogg vorbis support in para_server/para_filter]) fi +########################################################################### faad +have_faad=yes +AC_ARG_ENABLE(faad_headers, [AC_HELP_STRING(--enable-faad-headers=dir, + [look for neaacdec.h also in dir])]) +if test -n "$enable_faad_headers"; then + faad_cppflags="-I$enable_faad_headers" + CPPFLAGS="$CPPFLAGS $faad_cppflags" +fi +AC_ARG_ENABLE(faad_libs, [AC_HELP_STRING(--enable-fadd-libs=dir, + [look for libfaad also in dir])]) +if test -n "$enable_faad_libs"; then + faad_libs="-L$enable_faad_libs" + LDFLAGS="$LDFLAGS $faad_libs" +fi +AC_CHECK_HEADER(neaacdec.h, [], have_faad=no) +AC_CHECK_LIB([faad], [NeAACDecOpen], [], have_faad=no) +if test "$have_faad" = "yes"; then + AC_DEFINE(HAVE_FAAD, 1, define to 1 if you want to build the aacdec filter) + filter_errlist_objs="$filter_errlist_objs aacdec aac_common" + audiod_errlist_objs="$audiod_errlist_objs aacdec aac_common" + server_errlist_objs="$server_errlist_objs aac_afh aac_common" + server_ldflags="$server_ldflags $faad_libs -lfaad" + filter_ldflags="$filter_ldflags $faad_libs -lfaad" + audiod_ldflags="$audiod_ldflags $faad_libs -lfaad" + AC_SUBST(faad_cppflags) + AC_SUBST(faad_libs) +else + AC_MSG_WARN([no aac support in para_audiod/para_filter]) +fi ########################################################################### mad have_mad="yes" AC_CHECK_HEADERS([mad.h], [], [ @@ -220,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" @@ -230,18 +283,30 @@ 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 ########################################################################### ortp have_ortp="yes" -AC_CHECK_HEADERS([ortp/ortp.h], [], [ - have_ortp="no" -]) -AC_CHECK_LIB([ortp], [ortp_init], [], [ - have_ortp="no" -]) +AC_ARG_ENABLE(ortp, AC_HELP_STRING([--disable-ortp], [Disable ortp support]), + if test x$enableval = xno; then + have_ortp=no + fi +) +if test "$have_ortp" = "yes"; then + AC_CHECK_HEADERS([ortp/ortp.h], [], [ + have_ortp="no" + ]) + AC_CHECK_LIB([ortp], [ortp_init], [], [ + have_ortp="no" + ]) +fi if test "$have_ortp" = "yes"; then recv_cmdline_objs="$recv_cmdline_objs ortp_recv.cmdline" recv_errlist_objs="$recv_errlist_objs ortp_recv" @@ -257,7 +322,7 @@ if test "$have_ortp" = "yes"; then AC_DEFINE(HAVE_ORTP, 1, [define to 1 to turn on ortp support]) else - AC_MSG_WARN([deactivating ortp support]) + AC_MSG_NOTICE([deactivating ortp support]) fi AC_SUBST(GLIB_CFLAGS) AC_SUBST(GLIB_LIBS) @@ -297,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) @@ -323,10 +390,19 @@ 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) -names="$(for i in $write_writers; do printf '\"'$i'\", ' ; done)" +names="$(for i in $write_writers; do printf \"$i\",' ' ; done)" AC_DEFINE_UNQUOTED(WRITER_NAMES, $names, supported writer names) inits="$(for i in $write_writers; do printf 'extern void '$i'_writer_init(struct writer *); '; done)" AC_DEFINE_UNQUOTED(DECLARE_WRITER_INITS, $inits, init functions of the supported writers) @@ -343,13 +419,14 @@ AC_SUBST(gui_objs, add_dot_o($gui_objs)) AC_OUTPUT AC_MSG_NOTICE([creating Makefile.deps]) -gcc -MM -MG *.c > Makefile.deps +gcc -MM -MG $mysql_cppflags $faad_cppflags *.c > Makefile.deps AC_MSG_NOTICE([ paraslash configuration: ~~~~~~~~~~~~~~~~~~~~~~~~ mysql support: $have_mysql ogg vorbis support: $have_ogg mp3dec support (libmad): $have_mad +aac support (libfaad): $have_faad ortp support: $have_ortp unix socket credentials: $have_ucred supported writers for para_write: $write_writers