mirror of https://github.com/GNOME/gimp.git
applied modified patch from Henrik Brix Andersen which adds the
2006-01-20 Michael Natterer <mitch@gimp.org> * configure.in: applied modified patch from Henrik Brix Andersen which adds the possibility to build --without-alsa, even if alsa is available. Fixes bug #327777.
This commit is contained in:
parent
8c35465cdb
commit
c0eb0d78aa
|
@ -1,3 +1,9 @@
|
|||
2006-01-20 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* configure.in: applied modified patch from Henrik Brix Andersen
|
||||
which adds the possibility to build --without-alsa, even if alsa
|
||||
is available. Fixes bug #327777.
|
||||
|
||||
2006-01-19 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/tools/gimprectangletool.c (gimp_rectangle_tool_dispose):
|
||||
|
|
11
configure.in
11
configure.in
|
@ -1340,7 +1340,7 @@ AC_SUBST(WMF_CFLAGS)
|
|||
# Check for lcms
|
||||
################
|
||||
|
||||
AC_ARG_WITH(lcms,[ --without-lcms build without lcms support])
|
||||
AC_ARG_WITH(lcms, [ --without-lcms build without lcms support])
|
||||
|
||||
have_lcms=no
|
||||
if test "x$with_lcms" != xno; then
|
||||
|
@ -1370,17 +1370,20 @@ AM_CONDITIONAL(HAVE_LCMS, test $have_lcms = yes)
|
|||
# Check for alsa
|
||||
################
|
||||
|
||||
AM_PATH_ALSA(alsa_required_version,
|
||||
AC_ARG_WITH(alsa, [ --without-alsa disable alsa support in midi input controller])
|
||||
|
||||
if test "x$with_alsa" != xno; then
|
||||
AM_PATH_ALSA(alsa_required_version,
|
||||
AC_DEFINE(HAVE_ALSA, 1, [Define to 1 if alsa is available]),
|
||||
AC_MSG_WARN([*** midi input controller will be built without alsa support (alsa not found or unuseable) ***]))
|
||||
fi
|
||||
|
||||
|
||||
#######################
|
||||
# Check for linux input
|
||||
#######################
|
||||
|
||||
AC_ARG_WITH(linux-input,
|
||||
[ --without-linux-input don't build linux input event controller module])
|
||||
AC_ARG_WITH(linux-input, [ --without-linux-input don't build linux input event controller module])
|
||||
|
||||
have_linux_input=no
|
||||
if test "x$with_linux_input" != "xno"; then
|
||||
|
|
Loading…
Reference in New Issue