diff options
Diffstat (limited to 'graphics/gdtclft/files/patch-gif')
-rw-r--r-- | graphics/gdtclft/files/patch-gif | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/graphics/gdtclft/files/patch-gif b/graphics/gdtclft/files/patch-gif new file mode 100644 index 000000000000..f7dbb16b5b61 --- /dev/null +++ b/graphics/gdtclft/files/patch-gif @@ -0,0 +1,16 @@ +--- gdCmd.c Fri Aug 4 17:11:05 2000 ++++ gdCmd.c Fri Jul 27 16:22:18 2001 +@@ -65,4 +65,6 @@ + {"createFromPNG", tclGdCreateCmd, 1, 1, 0, 0, + "filehandle"}, ++ {"createFromGIF", tclGdCreateCmd, 1, 1, 0, 0, ++ "filehandle"}, + {"createFromGD", tclGdCreateCmd, 1, 1, 0, 0, + "filehandle"}, +@@ -432,4 +434,6 @@ + } else if (cmd[10] == 'X') { + im = gdImageCreateFromXbm(filePtr); ++ } else if (cmd[11] == 'I') { ++ im = gdImageCreateFromGif(filePtr); + } else { + im = gdImageCreateFromGd(filePtr); |