changeset 3179:72e1b748868f

PR1831: Drop version requirement for LCMS 2 2014-06-10 Andrew John Hughes <gnu.andrew@member.fsf.org> PR1831: Drop version requirement for LCMS 2 * INSTALL: Document lcms2 requirement. * NEWS: Updated. * acinclude.m4: (IT_CHECK_FOR_LCMS): Drop 2.5 requirement.
author Andrew John Hughes <gnu.andrew@redhat.com>
date Tue, 20 Jan 2015 05:57:38 +0000
parents 766bf00e3bf2
children 62e04f490bb4
files ChangeLog INSTALL NEWS acinclude.m4
diffstat 4 files changed, 12 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Oct 24 18:45:33 2014 +0100
+++ b/ChangeLog	Tue Jan 20 05:57:38 2015 +0000
@@ -1,3 +1,11 @@
+2014-06-10  Andrew John Hughes  <gnu.andrew@member.fsf.org>
+
+	PR1831: Drop version requirement for LCMS 2
+	* INSTALL: Document lcms2 requirement.
+	* NEWS: Updated.
+	* acinclude.m4:
+	(IT_CHECK_FOR_LCMS): Drop 2.5 requirement.
+
 2014-10-24  Andrew John Hughes  <gnu.andrew@redhat.com>
 
 	* Makefile.am,
--- a/INSTALL	Fri Oct 24 18:45:33 2014 +0100
+++ b/INSTALL	Tue Jan 20 05:57:38 2015 +0000
@@ -36,6 +36,7 @@
 pulseaudio-libs-devel >= 0.9.11 (for --enable-pulse-java)
 LLVM 2.5 or later (for --enable-shark)
 systemtap-sdl-devel >= 0.9.5 (for --enable-systemtap, Java method tracing requires systemtap >= 0.9.9)
+lcms2-devel (for --enable-lcms2 and --enable-system-lcms)
 
 See ./configure --help if you need to override the defaults.
 
--- a/NEWS	Fri Oct 24 18:45:33 2014 +0100
+++ b/NEWS	Tue Jan 20 05:57:38 2015 +0000
@@ -19,6 +19,7 @@
   - S7161796, RH1151372: PhaseStringOpts::fetch_static_field tries to fetch field from the Klass instead of the mirror
   - S8000897, RH1155012: VM crash in CompileBroker
 * Bug fixes
+  - PR1831: Drop version requirement for LCMS 2
   - PR2033: patches/ecj/jaxws-getdtdtype.patch no longer applies since removal of JAXWS drop
 
 New in release 1.13.5 (2014-10-14):
--- a/acinclude.m4	Fri Oct 24 18:45:33 2014 +0100
+++ b/acinclude.m4	Tue Jan 20 05:57:38 2015 +0000
@@ -1554,10 +1554,10 @@
   AC_MSG_RESULT(${ENABLE_SYSTEM_LCMS})
   if test x"${ENABLE_SYSTEM_LCMS}" = "xyes"; then
     dnl Check for LCMS2 headers and libraries.
-    PKG_CHECK_MODULES(LCMS2, lcms2 >= 2.5,[LCMS2_FOUND=yes],[LCMS2_FOUND=no])
+    PKG_CHECK_MODULES(LCMS2, lcms2,[LCMS2_FOUND=yes],[LCMS2_FOUND=no])
     if test "x${LCMS2_FOUND}" = xno
     then
-      AC_MSG_ERROR([Could not find LCMS >= 2.5; install it or build with --disable-system-lcms to use the in-tree copy.])
+      AC_MSG_ERROR([Could not find LCMS 2; install it or build with --disable-system-lcms to use the in-tree copy.])
     fi
     AC_SUBST(LCMS2_CFLAGS)
     AC_SUBST(LCMS2_LIBS)