GNOME Bugzilla – Bug 98748
gst-doc.m4 doesn't work with latest gtk-doc
Last modified: 2004-12-22 21:47:04 UTC
gst-doc.m4 has the following test for gtk-doc: if perl <<EOF ; then exit (("$gtk_doc_version" =~ /^[[0-9]]+\.[[0-9]]+$/) && ("$gtk_doc_version" >= "$gtk_doc_min_version") ? 0 : 1); EOF Currently, gtk-doc is version 0.10, and $gtk_doc_min_version is 0.7. The perl test "0.10" > "0.7" will return FALSE, as it does a lexical comparison. My perl is too rusty to propose a fix.
fixed in cvs, someone should close this