1
0
mirror of https://git.code.sf.net/p/fuse-emulator/fuse-utils synced 2025-08-07 13:42:58 +03:00

Add --without-audiofile (patch #173).

Legacy-ID: 3678
This commit is contained in:
José Manuel Ferrer Ortiz
2008-06-15 12:19:41 +00:00
committed by Fredrick Meunier
parent e08d77d89e
commit b2aa9dddab
2 changed files with 15 additions and 5 deletions

View File

@@ -111,11 +111,19 @@ if test "$glib" = yes; then
fi fi
fi fi
AM_PATH_AUDIOFILE( # Look for audiofile (default=yes)
0.2.3, AC_MSG_CHECKING(whether to use audiofile)
AC_DEFINE([HAVE_LIB_AUDIOFILE], 1, [Defined if we've got audiofile]) AC_ARG_WITH(audiofile,
audiofile=yes [ --without-audiofile don't use audiofile],
) if test "$withval" = no; then audiofile=no; else audiofile=yes; fi,
audiofile=yes)
AC_MSG_RESULT($audiofile)
if test "$audiofile" = yes; then
AM_PATH_AUDIOFILE(
0.2.3,
AC_DEFINE([HAVE_LIB_AUDIOFILE], 1, [Defined if we've got audiofile])
)
fi
AM_CONDITIONAL(BUILD_AUDIOTOOLS, test "$audiofile" = yes) AM_CONDITIONAL(BUILD_AUDIOTOOLS, test "$audiofile" = yes)
AC_OUTPUT(Makefile \ AC_OUTPUT(Makefile \

View File

@@ -237,3 +237,5 @@
blocks, embedding loading screen and cassette inlays during blocks, embedding loading screen and cassette inlays during
conversion (Fred). conversion (Fred).
20080512 tape2wav.c: add help text for rate option (Fred). 20080512 tape2wav.c: add help text for rate option (Fred).
20080614 configure.in: add --without-audiofile (patch #1982487)
(José Manuel Ferrer Ortiz).