X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=configure.ac;h=316f95c74679613748e0fcc0f12c00b707d2f4a2;hp=bf0dfad94362adad8e9e9d517f5221fedbdd4af5;hb=33713473b1051c2d9f487c66a92a5cbdf1277ce3;hpb=f3170e2137a7657b575db43c3b11e42eff77bde2 diff --git a/configure.ac b/configure.ac index bf0dfad9..316f95c7 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ AC_PREREQ(2.60) -AC_INIT(paraslash, [0.2.15], maan@systemlinux.org) +AC_INIT(paraslash, [git], maan@systemlinux.org) AC_CONFIG_HEADER([config.h]) AC_PATH_PROG(UNAMEPATH, uname, no) @@ -15,6 +15,8 @@ AC_MSG_CHECKING(os type) OSTYPE="`$UNAMEPATH -s`" AC_MSG_RESULT("$OSTYPE") +AC_C_BIGENDIAN() + AC_PROG_CC AC_PROG_CPP AC_PROG_INSTALL @@ -91,7 +93,7 @@ audiod_audio_formats="" server_cmdline_objs="server.cmdline server_command_list random_selector_command_list playlist_selector_command_list" server_errlist_objs="server mp3_afh vss command net string signal random_selector - time daemon stat crypt http_send db close_on_fork playlist_selector + time daemon stat crypt http_send afs close_on_fork playlist_selector ipc dccp dccp_send fd user_list" server_ldflags="" server_audio_formats=" mp3" @@ -100,6 +102,7 @@ write_cmdline_objs="write.cmdline file_write.cmdline" write_errlist_objs="write write_common file_write time fd string sched stdin" write_ldflags="" writers=" file" +default_writer="FILE_WRITE" client_cmdline_objs="client.cmdline" client_errlist_objs="client net string crypt fd sched stdin stdout client_common" @@ -191,6 +194,7 @@ if test ${have_core_audio} = yes; then write_cmdline_objs="$write_cmdline_objs osx_write.cmdline" write_ldflags="$write_ldflags $f" writers="$writers osx" + default_writer="OSX_WRITE" AC_DEFINE(HAVE_CORE_AUDIO, 1, define to 1 on Mac Os X) fi ########################################################################### gtk2 @@ -415,6 +419,7 @@ if test "$have_alsa" = "yes"; then write_cmdline_objs="$write_cmdline_objs alsa_write.cmdline" write_ldflags="$write_ldflags -lasound" writers="$writers alsa" + default_writer="ALSA_WRITE" fi CPPFLAGS="$OLD_CPPFLAGS" LDFLAGS="$OLD_LDFLAGS" @@ -542,6 +547,7 @@ AC_DEFINE_UNQUOTED(INIT_AUDIOC_ERRLISTS, enum="$(for i in $writers; do printf "${i}_WRITE, " | tr '[a-z]' '[A-Z]'; done)" AC_DEFINE_UNQUOTED(WRITER_ENUM, $enum NUM_SUPPORTED_WRITERS, enum of supported writers) +AC_DEFINE_UNQUOTED(DEFAULT_WRITER, $default_writer, use this writer if none was specified) names="$(for i in $writers; do printf \"$i\",' ' ; done)" AC_DEFINE_UNQUOTED(WRITER_NAMES, $names, supported writer names) inits="$(for i in $writers; do printf 'extern void '$i'_write_init(struct writer *); '; done)"