Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 210415 | Differences between
and this patch

Collapse All | Expand All

(-)configure.in.orig (-4 / +9 lines)
Lines 445-454 Link Here
445
         if [[ $have_alsa = "yes" ]] ; then
445
         if [[ $have_alsa = "yes" ]] ; then
446
            LIBS="$LIBS -lasound"
446
            LIBS="$LIBS -lasound"
447
         fi
447
         fi
448
         PKG_CHECK_MODULES(JACK, jack, have_jack=yes, have_jack=no)
448
	 AC_ARG_WITH([jack], AS_HELP_STRING([--without-jack], [Build without jack library (default: test)]))
449
         if [[ $have_jack = "yes" ]] ; then
449
	 if test "x$with_jack" != "xno"; then
450
            LIBS="$LIBS $JACK_LIBS"
450
            PKG_CHECK_MODULES(JACK, [jack >=0.103], have_jack=yes, have_jack=no)
451
         fi
451
	    if [[ $have_jack = "yes" ]] ; then
452
        	LIBS="$LIBS $JACK_LIBS"
453
	    else
454
		AC_MSG_ERROR([Support for jack library requested but no suitable version available])
455
            fi
456
	 fi	
452
         AC_CHECK_LIB(hpi, HPI_SubSysCreate, have_asihpi=yes, have_asihpi=no, -lm)
457
         AC_CHECK_LIB(hpi, HPI_SubSysCreate, have_asihpi=yes, have_asihpi=no, -lm)
453
         if [[ $have_asihpi = "yes" ]] ; then
458
         if [[ $have_asihpi = "yes" ]] ; then
454
            LIBS="$LIBS -lhpi"
459
            LIBS="$LIBS -lhpi"

Return to bug 210415