X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=configure.ac;h=a28d4114486c0cc476e77a165929bdeb57ea581a;hp=06cbe7acf9ad56860280a80254290f2f8987ebf1;hb=39f4ce8ef309f5ee3e800494a726cda1412916be;hpb=63afe815dbecded66415b041a98c5bc1b060dc95 diff --git a/configure.ac b/configure.ac index 06cbe7ac..a28d4114 100644 --- a/configure.ac +++ b/configure.ac @@ -51,31 +51,37 @@ AC_CHECK_FUNCS([atexit dup2 gethostbyname inet_ntoa memchr memmove memset \ AC_CHECK_LIB([ncurses], [initscr], [], [AC_MSG_ERROR([libncurses not found])]) -AC_CHECK_LIB([readline], [readline], [], - [AC_MSG_ERROR([libreadline not found])]) AC_CHECK_LIB([menu], [new_menu], [extras="$extras para_dbadm"], [AC_MSG_WARN([libmenu not found, cannot build para_dbadm])]) -########################################################################### -recv_cmdline_objs="recv.cmdline http_recv.cmdline" -recv_errlist_objs="http_recv recv_common recv time string net" + +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" recv_ldflags="" filter_cmdline_objs="filter.cmdline compress_filter.cmdline" filter_errlist_objs="filter_chain wav compress filter string" filter_ldflags="" -audiod_cmdline_objs="audiod.cmdline grab_client.cmdline compress_filter.cmdline - http_recv.cmdline" -audiod_errlist_objs="audiod exec close_on_fork signal string daemon stat net - time grab_client filter_chain wav compress http_recv recv_common ringbuffer" +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" audiod_ldflags="" server_cmdline_objs="server.cmdline" server_errlist_objs="server mp3 afs command net string signal random_selector - time daemon stat crypt http_send db close_on_fork playlist_selector ipc" + 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_ldflags="" +write_writers="file" + + ########################################################################### ssl dnl @synopsis CHECK_SSL dnl @@ -124,6 +130,20 @@ if test "$enable_ssldir" = "yes"; then enable_ssldir=""; fi CHECK_SSL($enable_ssldir) server_ldflags="$srver_ldflags $SSL_LDFLAGS $SSL_LIBS" +########################################################################### ucred + +AC_MSG_CHECKING(for struct ucred) +AC_TRY_LINK([ + #include + #include +],[ + struct ucred sucred; sucred.pid=0; +],[have_ucred=yes],[have_ucred=no]) +AC_MSG_RESULT($have_ucred) +if test ${have_ucred} = yes; then + AC_DEFINE(HAVE_UCRED, 1, define to 1 you have struct ucred) +fi + ########################################################################### gtk2 pkg_modules="gtk+-2.0 >= 2.0.0" @@ -142,6 +162,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" ]) @@ -149,8 +181,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]) @@ -199,32 +233,36 @@ else AC_MSG_WARN([no mp3dec support in para_audiod/para_filter]) fi ########################################################################### alsa -play="para_play" -msg="will not build para_play" +have_alsa="yes" +msg="=> no alsa support for para_write" AC_CHECK_HEADERS([alsa/asoundlib.h], [], [ - AC_MSG_WARN([no alsa/asoundlib, $msg]) - play="" + AC_MSG_WARN([no alsa/asoundlib $msg]) + have_alsa="no" ]) AC_CHECK_LIB([asound], [snd_pcm_open], [], [ - AC_MSG_WARN([no libasound, $msg]) - play="" + AC_MSG_WARN([no libasound $msg]) + have_alsa="no" ]) -extras="$extras $play" - - +if test "$have_alsa" = "yes"; then + write_errlist_objs="$write_errlist_objs alsa_writer" + write_ldflags="$write_ldflags -lasound" + write_writers="$write_writers alsa" +fi ########################################################################### ortp have_ortp="yes" -pkg_modules="glib-2.0 >= 2.0.4" -PKG_CHECK_MODULES(GLIB, [$pkg_modules], [], [ - have_ortp="no" -]) -CPPFLAGS="$CPPFLAGS $GLIB_CFLAGS" -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" @@ -234,13 +272,13 @@ if test "$have_ortp" = "yes"; then server_errlist_objs="$server_errlist_objs ortp_send" - recv_ldflags="$recv_ldflags $GLIB_LIBS -lortp" - server_ldflags="$server_ldflags $GLIB_LIBS -lortp" - audiod_ldflags="$audiod_ldflags $GLIB_LIBS -lortp" + recv_ldflags="$recv_ldflags -lortp" + server_ldflags="$server_ldflags -lortp" + audiod_ldflags="$audiod_ldflags -lortp" 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) @@ -279,6 +317,7 @@ recv_objs="$recv_cmdline_objs $recv_errlist_objs" 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" AC_SUBST(recv_objs, add_dot_o($recv_objs)) AC_SUBST(recv_ldflags, $recv_ldflags) @@ -287,7 +326,7 @@ AC_DEFINE_UNQUOTED(INIT_RECV_ERRLISTS, objlist_to_errlist($recv_errlist_objs), AC_SUBST(filter_objs, add_dot_o($filter_objs)) AC_SUBST(filter_ldflags, $filter_ldflags) -AC_DEFINE_UNQUOTED(INIT_FILTER_ERRLISTS, +AC_DEFINE_UNQUOTED(INIT_FILTER_ERRLISTS, objlist_to_errlist($filter_errlist_objs), errors used by para_filter) AC_SUBST(audiod_objs, add_dot_o($audiod_objs)) @@ -297,11 +336,35 @@ AC_DEFINE_UNQUOTED(INIT_AUDIOD_ERRLISTS, objlist_to_errlist($audiod_errlist_objs AC_SUBST(server_objs, add_dot_o($server_objs)) AC_SUBST(server_ldflags, $server_ldflags) -AC_DEFINE_UNQUOTED(INIT_SERVER_ERRLISTS, +AC_DEFINE_UNQUOTED(INIT_SERVER_ERRLISTS, objlist_to_errlist($server_errlist_objs), errors used by para_server) + +AC_SUBST(write_objs, add_dot_o($write_objs)) +AC_SUBST(write_ldflags, $write_ldflags) +AC_DEFINE_UNQUOTED(INIT_WRITE_ERRLISTS, + objlist_to_errlist($write_errlist_objs), errors used by para_write) + +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)" +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) +array="$(for i in $write_writers; do printf '{.init = '$i'_writer_init},'; done)" +AC_DEFINE_UNQUOTED(WRITER_ARRAY, $array, array of supported writers) + +gui_cmdline_objs="gui.cmdline" +gui_errlist_objs="exec close_on_fork signal string stat ringbuffer fd" +gui_other_objs="gui gui_common gui_theme" +gui_objs="$gui_cmdline_objs $gui_errlist_objs $gui_other_objs" +AC_DEFINE_UNQUOTED(INIT_GUI_ERRLISTS, + objlist_to_errlist($gui_errlist_objs), errors used by para_gui) +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 *.c > Makefile.deps AC_MSG_NOTICE([ paraslash configuration: ~~~~~~~~~~~~~~~~~~~~~~~~ @@ -309,4 +372,6 @@ mysql support: $have_mysql ogg vorbis support: $have_ogg mp3dec support (libmad): $have_mad ortp support: $have_ortp +unix socket credentials: $have_ucred +supported writers for para_write: $write_writers ])