[xiph-commits] r3836 - liboggplay/trunk

oggk at svn.annodex.net oggk at svn.annodex.net
Sat Jan 10 08:08:31 PST 2009


Author: oggk
Date: 2009-01-10 08:08:31 -0800 (Sat, 10 Jan 2009)
New Revision: 3836

Modified:
   liboggplay/trunk/configure.ac
Log:
require liboggz 0.9.8, and fix equality in pkg-config version comparison
 (patch by bradh)



Modified: liboggplay/trunk/configure.ac
===================================================================
--- liboggplay/trunk/configure.ac	2008-12-20 11:41:49 UTC (rev 3835)
+++ liboggplay/trunk/configure.ac	2009-01-10 16:08:31 UTC (rev 3836)
@@ -103,9 +103,9 @@
 dnl
 
 dnl Minimum required version of liboggz
-oggplay_OGGZ="0.9.5"
+oggplay_OGGZ="0.9.8"
 
-PKG_CHECK_MODULES(OGGZ, oggz > "$oggplay_OGGZ", HAVE_OGGZ="yes", HAVE_OGGZ="no")
+PKG_CHECK_MODULES(OGGZ, oggz >= "$oggplay_OGGZ", HAVE_OGGZ="yes", HAVE_OGGZ="no")
 
 if test "$HAVE_OGGZ" = "yes" ; then
   AC_DEFINE(HAVE_OGGZ, [], [Define if have liboggz])



More information about the commits mailing list