On Wed, 2005-11-23 at 15:19 +0100, Tom Parker wrote: > If DAAP sharing is enabled, but libsoup is not available, configure does not > correctly return an error as the test is incorrectly specified. The following > patch fixes this. > > Tom Parker > > Index: configure.ac > =================================================================== > RCS file: /cvs/gnome/rhythmbox/configure.ac,v > retrieving revision 1.186 > diff -u -r1.186 configure.ac > --- configure.ac 15 Nov 2005 10:08:53 -0000 1.186 > +++ configure.ac 23 Nov 2005 14:18:11 -0000 > @@ -297,7 +297,7 @@ > > > dnl daap support > -if test x"$have_libsoup" = "xno" && "x$enable_daap" = "xyes"; then > +if test x"$have_libsoup" = "xno" && test "x$enable_daap" = "xyes"; then
That could also be: if test x"$have_libsoup" = "xno" -a "x$enable_daap" = "xyes"; then --- Bastien Nocera <[EMAIL PROTECTED]> The sex scenes are just a job, but I enjoyed them. -- Anthony Hopkins _______________________________________________ rhythmbox-devel mailing list [email protected] http://mail.gnome.org/mailman/listinfo/rhythmbox-devel
