GNOME Bugzilla – Bug 683418
'conflicting' version requires in configure.ac
Last modified: 2012-09-05 13:17:05 UTC
Commit http://git.gnome.org/browse/epiphany/commit/configure.ac?id=fb5f322406068fb9e514d204f9ba999bc40e2c55 introduced, likely unintentional, a bunch of 'weird' duplicates in configure.: LIBXSLT_REQUIRED=1.1.7 WEBKIT_GTK_REQUIRED=1.9.6 LIBSOUP_GNOME_REQUIRED=2.39.6 +WEBKIT_GTK_REQUIRED=1.9.5 +LIBSOUP_GNOME_REQUIRED=2.37.1 +GNOME_DESKTOP_REQUIRED=2.91.2 GNOME_KEYRING_REQUIRED=2.26.0 => so WEBKIT_GTK_REQUIRED is first defined to be 1.9.5, then redefined to 1.9.5; same for LIBSOUP_GNOME_REQUIRED: first 2.39.6, then redefined to 2.37.1. One of the two requirements is surely not true.
My bad. Is this causing any build issues that would require a new release?
(In reply to comment #1) > My bad. Is this causing any build issues that would require a new release? The only issue that could happen is if somebody has Libsoup 2.37.1, which, per configure, is now allowed (and was not before) and webkit 1.9.5 being sufficient per configure (as they were higher before, I assume those might actually be required at higher versions)
I removed the conflicting entries.