]> git.imager.perl.org - imager.git/commitdiff
work around compilation problem reported in
authorTony Cook <tony@develop=help.com>
Sun, 8 Oct 2006 11:49:40 +0000 (11:49 +0000)
committerTony Cook <tony@develop=help.com>
Sun, 8 Oct 2006 11:49:40 +0000 (11:49 +0000)
https://rt.cpan.org/Ticket/Display.html?id=21944

fills.c

diff --git a/fills.c b/fills.c
index e1af1567c673f71626a60cd17f49b82142226a62..43eb20ac1194d2bd65ed87759108636d4c48657d 100644 (file)
--- a/fills.c
+++ b/fills.c
@@ -621,10 +621,25 @@ i_new_hatch_low(const i_color *fg, const i_color *bg,
   fill->base.fill_with_color = fill_hatch;
   fill->base.fill_with_fcolor = fill_hatchf;
   fill->base.destroy = NULL;
-  fill->fg = fg ? *fg : fcolor_to_color(ffg);
-  fill->bg = bg ? *bg : fcolor_to_color(fbg);
-  fill->ffg = ffg ? *ffg : color_to_fcolor(fg);
-  fill->fbg = fbg ? *fbg : color_to_fcolor(bg);
+  /* Some Sun C didn't like the condition expressions that were here.
+     See https://rt.cpan.org/Ticket/Display.html?id=21944
+   */
+  if (fg)
+    fill->fg = *fg;
+  else
+    fill->fg = fcolor_to_color(ffg);
+  if (bg)
+    fill->bg = *bg;
+  else
+    fill->bg = fcolor_to_color(fbg);
+  if (ffg) 
+    fill->ffg = *ffg;
+  else
+    fill->ffg = color_to_fcolor(fg);
+  if (fbg)
+    fill->fbg = *fbg;
+  else
+    fill->fbg = color_to_fcolor(bg);
   if (combine) {
     i_get_combine(combine, &fill->base.combine, &fill->base.combinef);
   }