Smooth transitions in Bézier paths
by Diederik van Lierop
Hi,
I hope you don't mind if I increase the traffic on inkscape-devel even
more ;-)
At some point an idea popped up to only snap to nodes at discontinuities
in paths, and not to nodes at smooth transitions from one Bézier segment
to another. This is more intuitive (less "Hey, what it is Inkscape
snapping to now?") and might increase performance.
Problem is that in the object-snapper I only have access to SPCurve,
which is a wrapper for "old-style" NArtBpath. It's easy to find out
whether a point is inbetween two Bézier segments, but how do I find out
if a transition is smooth? I guess that should be done by comparing the
control points, or is there an easier way? With the transition to
lib2geom, will the NArtBpath be deprecated in favor of the Path class?
(that would make this rather exercise useless in the long run).
Any pointers would be appreciated here,
Diederik
14 years, 10 months
question regarding wishblade robocraft support...
by stuart
Sorry for posting here if the user list if better. And sorry about the
subject if it has been talked about before. I couldn't get sourceforge
to add me to the inkscape user mail list and sourceforge was timing out
on all my archive searches with no results.
---
I remember reading that there was a patch or something to inkscape to
support wishblade and robocraft users. Has that been integrated into
the inkscape application? Is that what the DXF is all about?
Wishblade users can not use DXF directly (needing the robocraft software
to import DXF and change it to some sort of native (and maybe
proprietary) GSD). Is there a way to get inkscape to save images in GSD
in order to simplify the process?
Ideally, I would prefer to skip bringing up the wishblade application.
In my set up, I do all my work in linux (GIMP/INKSCAPE) and only the
plotting in Windows. If I could do everything in linux it would
simplify the flow of work greatly. Has anyone figured out how the
craftrobo is communicated to in order to use it with common open source
linux plotting software?
Better yet, has anyone figured out how the wishblade has been crippled
in order to use it with common open source linux plotting software?
...thanks
15 years
sorting out PS/EPS/PDF export mess
by bulia byak
It's always bad when the UI offers two ways to do the same thing
without really explaining what's the difference. It's equally bad when
UI uses some meaningless techno jargon such as "cairo" :)
Unfortunately 0.46 was released still in the middle of a transition
period which made both these evils inevitable. Now that we're in 0.47,
however, I would like to address this issue by switching all of PS,
EPS, and PDF output to cairo, removing the builtin Inkscape exporter,
and purging the mentions of "cairo" from the UI.
As a matter of fact, this has already partially happened (not sure who
did this). Right now both PS export options work via cairo and produce
identical output. The Inkscape-native PDF export is nowhere to be
seen. The only exporter which still uses native code is EPS. However,
since 1.5.2 cairo can produce EPS files too, so this can all be done
in one place now (closng several EPS export bugs along the way). The
only downside is that it will require cairo >= 1.5.2, is everyone OK
with that?
By the way, the latest cairo 1.5.12 finally fixes the bug where
zooming in too closely in Outline mode produced messy broken lines.
Now everything is neat and clean. Upgrade is recommended.
--
bulia byak
Inkscape. Draw Freely.
http://www.inkscape.org
15 years
Welcome to GSoC 2008!
by Aaron Spike
Felipe, Jasper, Johan, Marco and Maximilian,
On behalf of the Inkscape community, let me congratulate you. You have
been selected to participate in Google's Summer of Code 2008. I'm happy
to see that all of you have already begun working with the community.
We're all looking forward to working with you through the summer and
beyond.
Bryce Harrington and I are the GSoC administrators for Inkscape this
summer. Don't hesitate to contact us if you have concerns. If you have
not already done so, please subscribe to the Inkscape-devel mailing
list. We recommend that you conduct the bulk of your Inkscape related
communications through this list so that the community can keep
up-to-date with your progress.
https://lists.sourceforge.net/lists/listinfo/inkscape-devel
We want to see you complete your project successfully. With this in
mind, please strive to communicate actively. Active and open
communication is a must for any successful Open Source Software project.
We recommend that you be mindful of your schedule. Attempt to complete
90% of your project by the midterm evaluation period (July 7-14th). This
will allow you to concentrate on bug fixing and documentation for the
remaining time.
Aaron Spike
15 years, 1 month
cutter control discussion
by Patrick
I have not seen any posts on this topic for a week or so.
I would like to help but I am terribly slow to get things done.
I am just wondering if we could hammer out what needs to be done so I
can add it to my "to-do list" volume 3
I could buy a cutter in July or August and I should be able to finish
reverse engineering the command protocol sometime in the fall.
I know there are different formats used to send information to the
cutters, would it be good to work on a more robust DXF export option
too? I don't know the first thing out GSD, does does someone want to
work on this ?
I am unfamiliar with Inkscape internals, if I provided the commands
could someone integrate this into Inkscape? Or do we even want to do
this? Is there a better way?
Thanks-Patrick
15 years, 1 month
PS and PDF: Print/Save As
by Tavmjong Bah
Hi,
I have been trying to understand Inkscape's PS and PDF output with
v0.46. It is very confusing so I thought I would summarize what I have
found in a table. I tested the various ways to get PS and PDF output
with:
http://tavmjong.free.fr/INKSCAPE/MANUAL/images/SVG_TESTS/svg_test.svg .
Save As
Print
Cairo
Vector
Raster#
PS
PS%
PDF
PS
PDF
PS
PDF
Patterns
No
Wrong
No
Wrong
Wrong
Yes
Yes
Clipping
No
Wrong
No
Wrong
Wrong
Yes
Yes
Masking
No
No
No
No
No
Yes
Yes
Transparency
No
Yes
Yes*
Yes
Yes
Yes
Yes
Dashed
Lines
Yes
Wrong
Yes
Wrong
Wrong
Yes
Yes
Gradient
on Stroke
No
Yes
Yes*
Yes
Yes
Yes
Yes
# Only at 72 dpi regardless of DPI setting.
% Crashes when run from window manager but not command line.
* Displays OK in Acroread, not with Evince 0.8.2.
The "Save As" and "Print" PDF use two different Cairo routines. What is
the history of this? It seems to be a bit of a waste of effort.
Tav
15 years, 1 month
Re: [Inkscape-devel] Temporary canvas items
by Maximilian Albert
Zitat von bulia byak <buliabyak@...400...>:
> On Wed, Jun 18, 2008 at 6:45 AM, Maximilian Albert <Anhalter42@...173...> wrote:
>> Yes. My question is how the "... that renders text" part would work.
>
> Since you don't need to worry about exact font, kerning, etc., which
> all may be tricky, cairo is the natural choice for this. Each canvas
> item has a render method which is passed the SPCanvasBuf; you can just
> deconstruct it to access the actual memory buffer, create a temporary
> cairo surface and context in the render method of your text canvas
> item, and draw text to it using cairo's show_text.
Is there boilerplate code available somewhere for creating and managing such a context? In particular, how would I tie it into SPCanvasBuf? Is the guchar* buf variable the memory buffer you are talking about? Why/how do I need to access it and what's the interconnection with the cairo context? Sorry if these are very basic questions, but I don't have any experience yet with Inkscape's on-canvas rendering.
> But that would be wasteful and hacky, although acceptable as a
> temporary solution. The proper solution that would take us one step
> closer to total cairofication is to create a common cairo context in
> sp-canvas, associated with SPCanvasBuf, and pass it down to all canvas
> buffer so they could draw to it using cairo at once. That is what
> needs to be done, the biggest obstacle being that most canvasitems are
> drawn with direct bit-flipping in the buffer and they assume 3 bytes
> per pixel and fixed RGB order, neither of which is true for cairo
> which only has 4 bytes whose order depends on endianness. So all of
> canvas items must be switched to cairo (or at least to 4 bytes) at
> once, this cannot be done incrementally. This is what I'll have to do
> as soon as I have some time to devote to it (unless someone comes to
> my rescue :)
How difficult and/or time-consuming do you expect this to be? Could it be done without knowing anything about the bit-flipping and other issues you mentioned? If you think that it would be worth it to take this little detour from my actual SoC project, I'd be glad to be this "someone". :) But I neither have any experience with cairo nor am I familiar with the problems you mentioned. So someone would need to give me step-by-step instructions of what needs to be done.
Max
--
Psssst! Schon vom neuen GMX MultiMessenger gehört?
Der kann`s mit allen: http://www.gmx.net/de/go/multimessenger
15 years, 1 month
Misc questions (dropdown menus, retrieving path info from files, LPE)
by Maximilian Albert
Hi all,
I started working in the direction of Valerie's proposal for a redesigned pen/pencil toolbar (see http://wiki.inkscape.org/wiki/index.php/Vector-brushes), and I have a few quick questions:
1) How can I add images/paths to dropdown menus, e.g., to illustrate the shape that is going to be applied as a PatternAlongPath LPE?
2) I'd like to save the various possible shapes for dropdown menu #6 (cf. the image in the blueprint) in a separate file and read them during runtime rather than to hard-code them in advance. How can I access their path information from my code so that they can be applied as a PatternAlongPath?
3) For the LPE experts (Johan in particular :-) ): Valerie suggests that the width of the shape can be controlled via two spinbuttons. When I apply a given shape to a path (using PatternAlongPath), does the width of the resulting LPE-item depend on the length of the path or is it independent of this length (i.e., does the resulting item become wider when the path is longer and thus the pattern is "stretched" more)?
Thanks in advance,
Max
--
GMX startet ShortView.de. Hier findest Du Leute mit Deinen Interessen!
Jetzt dabei sein: http://www.shortview.de/?mc=sv_ext_mf@...1921...
15 years, 2 months
Poppler 0.8.3 change to GfxFont
by Bob Jamison
Hi, all.
One of the guys on the channel asked me if Inkscape runs with Poppler 0.8.3. I didn't know that Poppler had released anything recently, so I gave it a try on win32.
Inkscape's sneaky use of some private Poppler APIs finally bit us! :-). There is a small change in GfxFont::getNextChar() that needs to be addressed for Poppler-0.8.3+. <tsdgeos> on #poppler kindly showed me the tweak, which I committed.
To be able to use the latest Poppler and this fix, compile with
-DPOPPLER_NEW_GFXFONT
It seems to run nicely. But you must recompile. Do NOT use the new Poppler shared objects or DLLs without recompiling, else it is a crasher.
The tweak is just something to keep Inkscape compiling. Miklos, can you look at this? I'm sure there is a cleaner, more permanent fix out possible.
thanks!
bob
15 years, 2 months
pdfinput/pdf-parser.cpp:2248: error: no matching function for call to GfxFont::getNextChar
by Jeff Kowalczyk
Seeing compile errors in pdf-input/pdfparser.cpp the last few days. Gentoo
Linux ~x86.
depbase=`echo extension/internal/pdfinput/pdf-parser.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
i686-pc-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I.. -I/usr/lib/perl5/5.8.8/i686-linux/CORE -I/usr/include/freetype2 -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -fopenmp -I/usr/include/ImageMagick -DRELAYTOOL_CRYPTO='static const int libcrypto_is_present = 1; static int __attribute__((unused)) libcrypto_symbol_is_present(char *m) { return 1; }' -DRELAYTOOL_SSL='static const int libssl_is_present = 1; static int __attribute__((unused)) libssl_symbol_is_present(char *m) { return 1; }' -DHAVE_SSL -I/usr/include/freetype2 -I/usr/include/poppler -I/usr/include/poppler/glib -I/usr/include/poppler -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pixman-1 -DPOTRACE=\"potrace\" -pthread -I/usr/include/gdkmm-2.4 -I/usr/lib/gdkmm-2.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairomm-1.0 -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include -I/usr/include/atkmm-1.6 -I/usr/include/atk-1.0 -I/usr/include/libxml2 -I/usr/include/gtkspell-2.0 -I../cxxtest -Werror=format-security -Wall -Wformat -Wformat-security -W -D_FORTIFY_SOURCE=2 -Wpointer-arith -Wcast-align -Wsign-compare -Woverloaded-virtual -Wswitch -Wno-unused-parameter -O2 -march=i686 -pipe -MT extension/internal/pdfinput/pdf-parser.o -MD -MP -MF $depbase.Tpo -c -o extension/internal/pdfinput/pdf-parser.o extension/internal/pdfinput/pdf-parser.cpp &&\
mv -f $depbase.Tpo $depbase.Po
In file included from extension/internal/pdfinput/pdf-parser.h:31,
from extension/internal/pdfinput/svg-builder.cpp:21:
/usr/include/poppler/Object.h: In member function 'int Object::arrayGetLength()':
/usr/include/poppler/Object.h:244: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::arrayAdd(Object*)':
/usr/include/poppler/Object.h:247: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::arrayGet(int, Object*)':
/usr/include/poppler/Object.h:250: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::arrayGetNF(int, Object*)':
/usr/include/poppler/Object.h:253: warning: deprecated conversion from string constant to 'char*'
In file included from extension/internal/pdfinput/pdf-parser.h:31,
from extension/internal/pdfinput/svg-builder.cpp:21:
/usr/include/poppler/Object.h: In member function 'int Object::dictGetLength()':
/usr/include/poppler/Object.h:262: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::dictAdd(char*, Object*)':
/usr/include/poppler/Object.h:265: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::dictSet(char*, Object*)':
/usr/include/poppler/Object.h:268: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'GBool Object::dictIs(char*)':
/usr/include/poppler/Object.h:271: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::dictLookup(char*, Object*)':
/usr/include/poppler/Object.h:277: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::dictLookupNF(char*, Object*)':
/usr/include/poppler/Object.h:280: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'char* Object::dictGetKey(int)':
/usr/include/poppler/Object.h:283: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::dictGetVal(int, Object*)':
/usr/include/poppler/Object.h:286: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::dictGetValNF(int, Object*)':
/usr/include/poppler/Object.h:289: warning: deprecated conversion from string constant to 'char*'
In file included from extension/internal/pdfinput/pdf-parser.h:31,
from extension/internal/pdfinput/svg-builder.cpp:21:
/usr/include/poppler/Object.h: In member function 'GBool Object::streamIs(char*)':
/usr/include/poppler/Object.h:298: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::streamReset()':
/usr/include/poppler/Object.h:304: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::streamClose()':
/usr/include/poppler/Object.h:307: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'int Object::streamGetChar()':
/usr/include/poppler/Object.h:310: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'int Object::streamLookChar()':
/usr/include/poppler/Object.h:313: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'char* Object::streamGetLine(char*, int)':
/usr/include/poppler/Object.h:316: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Guint Object::streamGetPos()':
/usr/include/poppler/Object.h:319: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::streamSetPos(Guint, int)':
/usr/include/poppler/Object.h:322: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Dict* Object::streamGetDict()':
/usr/include/poppler/Object.h:325: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp: In member function 'void Inkscape::Extension::Internal::SvgBuilder::_addStopToGradient(Inkscape::XML::Node*, double, GfxRGB*, double)':
extension/internal/pdfinput/svg-builder.cpp:762: warning: deprecated conversion from string constant to 'gchar*'
extension/internal/pdfinput/svg-builder.cpp: At global scope:
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:873: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp: In member function 'void Inkscape::Extension::Internal::SvgBuilder::updateFont(GfxState*)':
extension/internal/pdfinput/svg-builder.cpp:895: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:945: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:947: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:962: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/svg-builder.cpp:977: warning: deprecated conversion from string constant to 'gchar*'
extension/internal/pdfinput/svg-builder.cpp:980: warning: deprecated conversion from string constant to 'gchar*'
extension/internal/pdfinput/svg-builder.cpp:983: warning: deprecated conversion from string constant to 'gchar*'
extension/internal/pdfinput/svg-builder.cpp:986: warning: deprecated conversion from string constant to 'gchar*'
extension/internal/pdfinput/svg-builder.cpp:989: warning: deprecated conversion from string constant to 'gchar*'
extension/internal/pdfinput/svg-builder.cpp:992: warning: deprecated conversion from string constant to 'gchar*'
extension/internal/pdfinput/svg-builder.cpp:995: warning: deprecated conversion from string constant to 'gchar*'
extension/internal/pdfinput/svg-builder.cpp:998: warning: deprecated conversion from string constant to 'gchar*'
extension/internal/pdfinput/svg-builder.cpp:1001: warning: deprecated conversion from string constant to 'gchar*'
depbase=`echo extension/internal/pdfinput/pdf-input.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
i686-pc-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I.. -I/usr/lib/perl5/5.8.8/i686-linux/CORE -I/usr/include/freetype2 -pthread -DORBIT2=1 -I/usr/include/gnome-vfs-2.0 -I/usr/lib/gnome-vfs-2.0/include -I/usr/include/gconf/2 -I/usr/include/orbit-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -fopenmp -I/usr/include/ImageMagick -DRELAYTOOL_CRYPTO='static const int libcrypto_is_present = 1; static int __attribute__((unused)) libcrypto_symbol_is_present(char *m) { return 1; }' -DRELAYTOOL_SSL='static const int libssl_is_present = 1; static int __attribute__((unused)) libssl_symbol_is_present(char *m) { return 1; }' -DHAVE_SSL -I/usr/include/freetype2 -I/usr/include/poppler -I/usr/include/poppler/glib -I/usr/include/poppler -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pixman-1 -DPOTRACE=\"potrace\" -pthread -I/usr/include/gdkmm-2.4 -I/usr/lib/gdkmm-2.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairomm-1.0 -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include -I/usr/include/atkmm-1.6 -I/usr/include/atk-1.0 -I/usr/include/libxml2 -I/usr/include/gtkspell-2.0 -I../cxxtest -Werror=format-security -Wall -Wformat -Wformat-security -W -D_FORTIFY_SOURCE=2 -Wpointer-arith -Wcast-align -Wsign-compare -Woverloaded-virtual -Wswitch -Wno-unused-parameter -O2 -march=i686 -pipe -MT extension/internal/pdfinput/pdf-input.o -MD -MP -MF $depbase.Tpo -c -o extension/internal/pdfinput/pdf-input.o extension/internal/pdfinput/pdf-input.cpp &&\
mv -f $depbase.Tpo $depbase.Po
In file included from /usr/include/poppler/Gfx.h:19,
from extension/internal/pdfinput/pdf-parser.cpp:33:
/usr/include/poppler/Object.h: In member function 'int Object::arrayGetLength()':
/usr/include/poppler/Object.h:244: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::arrayAdd(Object*)':
/usr/include/poppler/Object.h:247: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::arrayGet(int, Object*)':
/usr/include/poppler/Object.h:250: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::arrayGetNF(int, Object*)':
/usr/include/poppler/Object.h:253: warning: deprecated conversion from string constant to 'char*'
In file included from /usr/include/poppler/Gfx.h:19,
from extension/internal/pdfinput/pdf-parser.cpp:33:
/usr/include/poppler/Object.h: In member function 'int Object::dictGetLength()':
/usr/include/poppler/Object.h:262: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::dictAdd(char*, Object*)':
/usr/include/poppler/Object.h:265: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::dictSet(char*, Object*)':
/usr/include/poppler/Object.h:268: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'GBool Object::dictIs(char*)':
/usr/include/poppler/Object.h:271: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::dictLookup(char*, Object*)':
/usr/include/poppler/Object.h:277: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::dictLookupNF(char*, Object*)':
/usr/include/poppler/Object.h:280: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'char* Object::dictGetKey(int)':
/usr/include/poppler/Object.h:283: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::dictGetVal(int, Object*)':
/usr/include/poppler/Object.h:286: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::dictGetValNF(int, Object*)':
/usr/include/poppler/Object.h:289: warning: deprecated conversion from string constant to 'char*'
In file included from /usr/include/poppler/Gfx.h:19,
from extension/internal/pdfinput/pdf-parser.cpp:33:
/usr/include/poppler/Object.h: In member function 'GBool Object::streamIs(char*)':
/usr/include/poppler/Object.h:298: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::streamReset()':
/usr/include/poppler/Object.h:304: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::streamClose()':
/usr/include/poppler/Object.h:307: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'int Object::streamGetChar()':
/usr/include/poppler/Object.h:310: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'int Object::streamLookChar()':
/usr/include/poppler/Object.h:313: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'char* Object::streamGetLine(char*, int)':
/usr/include/poppler/Object.h:316: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Guint Object::streamGetPos()':
/usr/include/poppler/Object.h:319: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::streamSetPos(Guint, int)':
/usr/include/poppler/Object.h:322: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Dict* Object::streamGetDict()':
/usr/include/poppler/Object.h:325: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::parse(Object*, GBool)':
extension/internal/pdfinput/pdf-parser.cpp:370: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:377: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::go(GBool)':
extension/internal/pdfinput/pdf-parser.cpp:423: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:440: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:390: warning: unused variable 'lastAbortCheck'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::execOp(Object*, Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:506: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:514: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:527: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:534: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opSetExtGState(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:694: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:705: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:709: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:713: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:717: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:723: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:727: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:736: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:742: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:744: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:746: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:747: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:768: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:773: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:774: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:777: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:777: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:784: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:789: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:795: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:808: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:809: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:812: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:816: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:820: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:840: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:844: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:848: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::doSoftMask(Object*, GBool, GfxColorSpace*, GBool, GBool, Function*, GfxColor*)':
extension/internal/pdfinput/pdf-parser.cpp:874: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:876: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:881: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:884: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:895: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:910: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opSetFillColorSpace(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:1024: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opSetStrokeColorSpace(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:1047: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opSetFillColor(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:1056: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opSetStrokeColor(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:1072: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opSetFillColorN(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:1093: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:1112: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opSetStrokeColorN(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:1137: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:1156: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opLineTo(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:1180: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opCurveTo(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:1190: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opCurveTo1(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:1206: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opCurveTo2(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:1222: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opClosePath(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:1250: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::doPatternFillFallback(GBool)':
extension/internal/pdfinput/pdf-parser.cpp:1409: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::doPatternStrokeFallback()':
extension/internal/pdfinput/pdf-parser.cpp:1428: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opShowText(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:2108: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opMoveShowText(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:2122: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opMoveSetShowText(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:2140: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opShowSpaceText(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:2163: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2188: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::doShowText(GooString*)':
extension/internal/pdfinput/pdf-parser.cpp:2248: error: no matching function for call to 'GfxFont::getNextChar(char*&, int&, CharCode*, Unicode [8], int, int*, double*, double*, double*, double*)'
/usr/include/poppler/GfxFont.h:204: note: candidates are: virtual int GfxFont::getNextChar(char*, int, CharCode*, Unicode**, int*, double*, double*, double*, double*)
extension/internal/pdfinput/pdf-parser.cpp:2270: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2297: error: no matching function for call to 'GfxFont::getNextChar(char*&, int&, CharCode*, Unicode [8], int, int*, double*, double*, double*, double*)'
/usr/include/poppler/GfxFont.h:204: note: candidates are: virtual int GfxFont::getNextChar(char*, int, CharCode*, Unicode**, int*, double*, double*, double*, double*)
extension/internal/pdfinput/pdf-parser.cpp:2200: warning: unused variable 'dx2'
extension/internal/pdfinput/pdf-parser.cpp:2200: warning: unused variable 'dy2'
extension/internal/pdfinput/pdf-parser.cpp:2208: warning: unused variable 'nChars'
extension/internal/pdfinput/pdf-parser.cpp:2208: warning: unused variable 'nSpaces'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opXObject(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:2341: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2345: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2346: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2350: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2352: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2353: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2357: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2359: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::doImage(Object*, Stream*, GBool)':
extension/internal/pdfinput/pdf-parser.cpp:2392: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2395: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2404: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2407: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2418: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2421: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2432: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2435: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2454: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2457: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2475: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2478: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2504: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2507: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2522: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2523: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2531: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2534: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2541: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2544: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2551: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2554: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2561: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2564: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2580: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2583: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2610: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2613: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2620: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2623: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2630: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2633: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2640: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2643: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2681: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::doForm(Object*)':
extension/internal/pdfinput/pdf-parser.cpp:2704: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2706: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2711: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2714: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2725: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2740: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2746: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2747: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2747: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2749: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2753: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2757: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'Stream* PdfParser::buildImageStream()':
extension/internal/pdfinput/pdf-parser.cpp:2907: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2909: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp:2924: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opImageData(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:2939: warning: deprecated conversion from string constant to 'char*'
extension/internal/pdfinput/pdf-parser.cpp: In member function 'void PdfParser::opEndImage(Object*, int)':
extension/internal/pdfinput/pdf-parser.cpp:2943: warning: deprecated conversion from string constant to 'char*'
make[2]: *** [extension/internal/pdfinput/pdf-parser.o] Error 1
make[2]: *** Waiting for unfinished jobs....
In file included from /usr/include/poppler/XRef.h:18,
from /usr/include/poppler/PDFDoc.h:18,
from extension/internal/pdfinput/pdf-input.cpp:23:
/usr/include/poppler/Object.h: In member function 'int Object::arrayGetLength()':
/usr/include/poppler/Object.h:244: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::arrayAdd(Object*)':
/usr/include/poppler/Object.h:247: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::arrayGet(int, Object*)':
/usr/include/poppler/Object.h:250: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::arrayGetNF(int, Object*)':
/usr/include/poppler/Object.h:253: warning: deprecated conversion from string constant to 'char*'
In file included from /usr/include/poppler/XRef.h:18,
from /usr/include/poppler/PDFDoc.h:18,
from extension/internal/pdfinput/pdf-input.cpp:23:
/usr/include/poppler/Object.h: In member function 'int Object::dictGetLength()':
/usr/include/poppler/Object.h:262: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::dictAdd(char*, Object*)':
/usr/include/poppler/Object.h:265: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::dictSet(char*, Object*)':
/usr/include/poppler/Object.h:268: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'GBool Object::dictIs(char*)':
/usr/include/poppler/Object.h:271: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::dictLookup(char*, Object*)':
/usr/include/poppler/Object.h:277: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::dictLookupNF(char*, Object*)':
/usr/include/poppler/Object.h:280: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'char* Object::dictGetKey(int)':
/usr/include/poppler/Object.h:283: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::dictGetVal(int, Object*)':
/usr/include/poppler/Object.h:286: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Object* Object::dictGetValNF(int, Object*)':
/usr/include/poppler/Object.h:289: warning: deprecated conversion from string constant to 'char*'
In file included from /usr/include/poppler/XRef.h:18,
from /usr/include/poppler/PDFDoc.h:18,
from extension/internal/pdfinput/pdf-input.cpp:23:
/usr/include/poppler/Object.h: In member function 'GBool Object::streamIs(char*)':
/usr/include/poppler/Object.h:298: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::streamReset()':
/usr/include/poppler/Object.h:304: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::streamClose()':
/usr/include/poppler/Object.h:307: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'int Object::streamGetChar()':
/usr/include/poppler/Object.h:310: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'int Object::streamLookChar()':
/usr/include/poppler/Object.h:313: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'char* Object::streamGetLine(char*, int)':
/usr/include/poppler/Object.h:316: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Guint Object::streamGetPos()':
/usr/include/poppler/Object.h:319: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'void Object::streamSetPos(Guint, int)':
/usr/include/poppler/Object.h:322: warning: deprecated conversion from string constant to 'char*'
/usr/include/poppler/Object.h: In member function 'Dict* Object::streamGetDict()':
/usr/include/poppler/Object.h:325: warning: deprecated conversion from string constant to 'char*'
make[2]: Leaving directory `/var/tmp/portage/media-gfx/inkscape-0.46.2/work/inkscape-0.46.2/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/tmp/portage/media-gfx/inkscape-0.46.2/work/inkscape-0.46.2'
make: *** [all] Error 2
*
* ERROR: media-gfx/inkscape-0.46.2 failed.
* Call stack:
* ebuild.sh, line 49: Called src_compile
* environment, line 2584: Called gnome2_src_compile
* environment, line 1954: Called die
* The specific snippet of code:
* emake || die "compile failure"
* The die message:
* compile failure
15 years, 2 months