[argyllcms] Re: ArgyllCMS V1.7.0 has been released

  • From: Richard Hughes <hughsient@xxxxxxxxx>
  • To: argyllcms@xxxxxxxxxxxxx
  • Date: Fri, 1 May 2015 15:33:04 +0100

On 1 May 2015 at 08:56, Graeme Gill <graeme@xxxxxxxxxxxxx> wrote:

I'm very pleased to announce the release of ArgyllCMS V1.7.0.

Great, thanks. The attached patch fixes the compile failure when
chromecast support is not enabled.

Richard.
--- spectro/dispcal.c 2015-05-01 15:15:33.089843585 +0100
+++ spectro/dispcal.c.orig 2015-05-01 15:16:25.499096429 +0100
@@ -2296,10 +2296,14 @@ int main(int argc, char *argv[]) {
error("Chosen ChromCasts (%d) is outside list
(1..%d)\n",ccdisp,i);
ccid = ccids[ccdisp-1];
}
+#endif

if (docalib) {
if ((rv = disprd_calibration(ipath, fc, dtype, -1, 0, tele,
nadaptive, nocal, disp,
- webdisp, ccid,
+ webdisp,
+#ifdef HAVE_CHROMECAST
+ ccid,
+#endif
#ifdef NT
madvrdisp,
#endif
--- spectro/dispread.c 2015-05-01 15:15:14.144752186 +0100
+++ spectro/dispread.c.orig 2015-05-01 15:15:15.976761024 +0100
@@ -683,10 +683,14 @@ int main(int argc, char *argv[]) {
error("Chosen ChromCasts (%d) is outside list
(1..%d)\n",ccdisp,i);
ccid = ccids[ccdisp-1];
}
+#endif

if (docalib) {
if ((rv = disprd_calibration(ipath, fc, dtype, -1, 0, tele,
nadaptive, noautocal,
- disp, webdisp, ccid,
+ disp, webdisp,
+#ifdef HAVE_CHROMECAST
+ ccid,
+#endif
#ifdef NT
madvrdisp,
#endif

Other related posts: