X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=configure.ac;h=3db6082d30ce94c205c9a979cbd463070ca78eaf;hb=65e978a89fb32ff8be0b5d9ce4bc6e2a8a2b0e06;hp=1fa5ac4f2f71c9fe949862278e25a51a8a5b0fb5;hpb=10756ea9adc1b757ef1ccf2149bda9771923637c;p=paraslash.git diff --git a/configure.ac b/configure.ac index 1fa5ac4f..3db6082d 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,14 @@ AC_PREREQ(2.60) AC_INIT(paraslash, [git], maan@systemlinux.org) AC_CONFIG_HEADER([config.h]) -########################################################################### generic +AC_PATH_PROG(UNAMEPATH, uname, no) +if test "$UNAMEPATH" = "no"; then + AC_MSG_ERROR(unable to determine system type) +fi +AC_MSG_CHECKING(os type) +OSTYPE="`$UNAMEPATH -s`" +AC_MSG_RESULT("$OSTYPE") + AC_PROG_CC AC_PROG_CPP AC_PROG_INSTALL @@ -276,6 +283,9 @@ AC_CHECK_HEADERS([ogg/ogg.h vorbis/codec.h], [], [ have_ogg="no" ]) if test "$have_ogg" = "yes"; then AC_DEFINE(HAVE_OGGVORBIS, 1, define to 1 to turn on ogg vorbis support) filters="$filters oggdec" + if test "$OSTYPE" = "Darwin"; then + oggvorbis_libs="-Wl,-bind_at_load $oggvorbis_libs" + fi server_ldflags="$server_ldflags $oggvorbis_libs -logg -lvorbis -lvorbisfile" filter_ldflags="$filter_ldflags $oggvorbis_libs -lvorbis -lvorbisfile" audiod_ldflags="$audiod_ldflags $oggvorbis_libs -lvorbis -lvorbisfile"