By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2159
Collapse All | Expand All

(-)a/configure.in.in (-2 / +16 lines)
Lines 547-556 AC_PATH_PROG(ARTSCCONFIG, artsc-config, no, $artsc_config_test_path) Link Here
547
547
548
if test "x$build_arts" = "xyes" && test "x$ARTSCCONFIG" != "xno" ; then
548
if test "x$build_arts" = "xyes" && test "x$ARTSCCONFIG" != "xno" ; then
549
	LIB_ARTS="-lartskde"
549
	LIB_ARTS="-lartskde"
550
	ARTS_PREFIX=[`$ARTSCCONFIG --arts-prefix`]
550
	ARTS_CFLAGS=[`$PKG_CONFIG --cflags arts`]
551
	ARTS_CFLAGS="-I$ARTS_PREFIX/include/arts"
552
	ARTS_LIBS=[`$PKG_CONFIG --libs-only-l arts`]
551
	ARTS_LIBS=[`$PKG_CONFIG --libs-only-l arts`]
553
	AC_DEFINE(HAVE_ARTS, 1, [have arts support in juk])
552
	AC_DEFINE(HAVE_ARTS, 1, [have arts support in juk])
553
	
554
	AC_TRY_COMPILE([
555
		#include <sndio.h>
556
	],[
557
		#ifdef SNDIO_H
558
		  /* We have sndio library */
559
		#else
560
		  # Error no sndio library
561
		#endif
562
	],
563
	have_sndio=yes,
564
	have_sndio=no);
565
	if test "x$have_sndio" = "xyes" ; then
566
		ARTS_LIBS="$ARTS_LIBS -lsndio"
567
	fi
554
else
568
else
555
	build_arts="no"
569
	build_arts="no"
556
	LIB_ARTS=""
570
	LIB_ARTS=""

Return to bug 2159