On 3/19/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > All, > Fusionsound has a configure error if your using Directfb-1.0.0. The > issue is Fusionsound does a check for the directfb version and > verifies that the directfb version is equal to or greater than the > fusionsound version. > With the new directfb-1.0.0 and with the current fusionsound-1.0.0-rc1 > the check looks like this: > check if 1.0.0 >= 1.0.0-rc1 > > it fails since configure considers 1.0.0-rc1 to be greater than 1.0.0, > I was able to modify the configure.in and hard code the check to 1.0.0 > instead of the Fusionsound version and everything configured and > compiled with no issues.
To fix this, apply this patch --- FusionSound-20070312/configure.in.orig 2007-03-12 09:17:25.000000000 -0800 +++ FusionSound-20070312/configure.in 2007-03-12 09:17:36.000000000 -0800 @@ -197,7 +197,7 @@ # # Check for DirectFB-Internal # -DIRECTFB_REQUIRED_VERSION=$FUSIONSOUND_VERSION +DIRECTFB_REQUIRED_VERSION=1.0.0 AC_MSG_CHECKING(for DirectFB-Internal) if $PKG_CONFIG --atleast-version $DIRECTFB_REQUIRED_VERSION directfb-internal ; then _______________________________________________ directfb-users mailing list [email protected] http://mail.directfb.org/cgi-bin/mailman/listinfo/directfb-users
