]> git.pld-linux.org Git - packages/ImageMagick.git/blob - agread-param.patch
remove private header for koffice
[packages/ImageMagick.git] / agread-param.patch
1 add agread extra parameter
2
3 seems the parameter was always defined in prototype, just compiler was
4 not that picky about that
5
6 libtool: compile:  ccache x86_64-pld-linux-gcc -std=gnu99 -std=gnu99 -DHAVE_CONFIG_H -I. -I./config -I/usr/include/graphviz -I/usr/include/freetype2 -I/usr/include/libxml2 -I/usr/include/lqr-1 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -fopenmp -O2 -fwrapv -pipe -Wformat -Werror=format-security -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector --param=ssp-buffer-size=4 -fPIC -march=x86-64 -gdwarf-4 -fno-debug-types-section -fvar-tracking-assignments -g2 -Wall -pthread -MT coders/coders_dot_la-dot.lo -MD -MP -MF coders/.deps/coders_dot_la-dot.Tpo -c coders/dot.c  -fPIC -DPIC -o coders/.libs/coders_dot_la-dot.o
7 coders/dot.c: In function 'ReadDOTImage':
8 coders/dot.c:138:3: error: too few arguments to function 'agread'
9 In file included from /usr/include/graphviz/types.h:49:0,
10                  from /usr/include/graphviz/gvc.h:17,
11                  from coders/dot.c:66:
12 /usr/include/graphviz/cgraph.h:268:18: note: declared here
13 make[1]: *** [coders/coders_dot_la-dot.lo] Error 1
14 make[1]: Leaving directory `/home/users/glen/rpm/BUILD/x86_64-linux/ImageMagick-6.7.5-9'
15
16 checked:
17 - auto/ti/graphviz-2_26_3-7
18 - auto/th/graphviz-2_20_3-9
19 - auto/ti/graphviz-2_18-4
20 - auto/ti/graphviz-2_14_1-6
21
22 --- ImageMagick-6.7.9-10/coders/dot.c~  2012-08-30 14:41:56.000000000 +0300
23 +++ ImageMagick-6.7.9-10/coders/dot.c   2013-03-20 00:23:13.217244621 +0200
24 @@ -136,7 +136,7 @@
25    (void) AcquireUniqueFilename(read_info->filename);
26    (void) FormatLocaleString(command,MaxTextExtent,"-Tsvg -o%s %s",
27      read_info->filename,image_info->filename);
28 -  graph=agread(GetBlobFileHandle(image));
29 +  graph=agread(GetBlobFileHandle(image), (Agdisc_t *) 0);
30    if (graph == (graph_t *) NULL)
31      return ((Image *) NULL);
32    option=GetImageOption(image_info,"dot:layout-engine");
This page took 0.088667 seconds and 3 git commands to generate.