Jon
Freedoom Bloke

Posts: 1334
Registered: 09-00 |
Patch to adjust "composite" usage for composing the "not done yet" sprites, which means you can build freedoom using "graphicsmagick" (an imagemagick fork):
code:
Date: Fri, 3 Sep 2010 15:32:03 +0100
Subject: [PATCH] use Over as compose argument for dummy sprites
'Over' is an equivalent option to 'src-over' for composite, introduced
at some point before Imagemagick 6.x.
The 'graphicsmagick' fork of Imagemagick provides a (supposedly)
compatible imagemagick interface, but lacks the (older) 'src-over'
composite type.
Using 'Over' means you can build with imagemagick or graphicsmagick.
diff --git a/sprites/jond/placeholder/Makefile b/sprites/jond/placeholder/Makefile
index fab696d..e454217 100644
--- a/sprites/jond/placeholder/Makefile
+++ b/sprites/jond/placeholder/Makefile
@@ -14,7 +14,7 @@ TARGETS = $(notdir $(ALLSRC))
DUMMY =../../dummy.gif
# TODO: if dst's width is < src's, src is clipped. Try to prevent this.
-ARGS=-compose src-over -gravity center
+ARGS=-compose Over -gravity center
foo: $(VILEDEST) $(TARGETS)
|