GNOME Bugzilla – Bug 135115
Use of non-standard test(1) operator
Last modified: 2004-12-22 21:47:04 UTC
The as-docbook.m4 file, used when generating gstreamer's configure, and included in gstreamer/common/m4, calls the test utility using the == operator. This is not POSIX (a GNU extension), which fails on some systems that don't support it, like NetBSD. This results in incorrect detection of xsltproc. The solution is trivial: replace the == operator with =, which is standard.
Created attachment 24651 [details] [review] Sample patch
This problem is also present in gst-plugins.
fixed in CVS