Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Help plz! I can't emerge kdevelop...
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Portage & Programming
View previous topic :: View next topic  
Author Message
cedricv
n00b
n00b


Joined: 16 Apr 2003
Posts: 4
Location: Paris, FR

PostPosted: Wed Apr 16, 2003 9:38 am    Post subject: Help plz! I can't emerge kdevelop... Reply with quote

When I do a 'emerge kdevelop', the emerge fails when compiling graphviz (depedendency of kdevelop, see below).


Code:
/usr/lib/libjpeg.a(jcapimin.o)(.text+0x0): In function `jpeg_CreateCompress':
: multiple definition of `jpeg_CreateCompress'
../gd/.libs/libgdconvenience.al(jcapimin.o)(.text+0x0): first defined here

[b](...a lot of jpeg-related multiple definitions errors...)[/b]

../gd/.libs/libgdconvenience.al(jmemnobs.o)(.text+0x52): first defined here
/usr/lib/libjpeg.a(jmemnobs.o)(.text+0x55): In function `jpeg_mem_term':
: multiple definition of `jpeg_mem_term'
../gd/.libs/libgdconvenience.al(jmemnobs.o)(.text+0x55): first defined here
collect2: ld returned 1 exit status
make[3]: *** [libdotneato.la] Error 1
make[3]: *** Waiting for unfinished jobs....
gcc -march=pentium4 -O3 -pipe -msse -fomit-frame-pointer -Wall -Wno-unknown-pragmas -o .libs/neato neato.o  ../dotneato/neatogen/.libs/libneatoconvenience.al ../dotneato/pack/.libs/libpackconvenience.al ../dotneato/common/.libs/libcommonconvenience.al ../pathplan/.libs/libpathplan.so ../graph/.libs/libgraph.so ../cdt/.libs/libcdt.so ../gd/.libs/libgdconvenience.al /usr/lib/libfreetype.so -lpng /usr/lib/libjpeg.a -lz -lm -Wl,--rpath -Wl,/usr/lib/graphviz
creating neato
make[3]: Leaving directory `/var/tmp/portage/graphviz-1.9/work/graphviz-1.9/dotneato'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/var/tmp/portage/graphviz-1.9/work/graphviz-1.9/dotneato'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/tmp/portage/graphviz-1.9/work/graphviz-1.9'
make: *** [all] Error 2

!!! ERROR: media-gfx/graphviz-1.9 failed.
!!! Function src_compile, Line 36, Exitcode 2
!!! (no error message)



Code:

cedric@CEDRIC cedric $ emerge --pretend kdevelop

These are the packages that I would merge, in order:

Calculating dependencies ...done!
[ebuild  N   ] media-gfx/graphviz-1.9
[ebuild  N   ] app-doc/doxygen-1.2.18
[ebuild  N   ] app-doc/kdelibs-apidocs-3.1.1a
[ebuild  N   ] dev-util/kdevelop-3.0_alpha3



I tried to compile with my usual USE var (which is USE="-gif -jpeg -gnome gtk mozilla samba usb kde X cups"), and then I tried with just USE="jpeg" and then with USE="", but it always fails)


Please what can I do to solve the problem??

Thx
_________________
-- CV
Back to top
View user's profile Send private message
cedricv
n00b
n00b


Joined: 16 Apr 2003
Posts: 4
Location: Paris, FR

PostPosted: Tue Apr 22, 2003 8:16 am    Post subject: Reply with quote

:(
_________________
-- CV
Back to top
View user's profile Send private message
Herodot
Guru
Guru


Joined: 29 Jul 2002
Posts: 429
Location: Professor Xavier's school for gifted youngsters

PostPosted: Tue Apr 22, 2003 10:55 am    Post subject: Reply with quote

Why do you have "-gif -jpeg"? What about png?
Are you sure you got that USE updated before trying the emerge again?
_________________
Excelsior!
Back to top
View user's profile Send private message
cedricv
n00b
n00b


Joined: 16 Apr 2003
Posts: 4
Location: Paris, FR

PostPosted: Tue Apr 22, 2003 12:02 pm    Post subject: Reply with quote

Herodot wrote:
Why do you have "-gif -jpeg"? What about png?

I had to add gif/jpeg in USE for installing a package (sorry I don't remember which one... maybe gdlib?)
For compiling kdevelop (or I should say graphviz dependency of kdevelop), I tried with or without gif jpeg and also without anything, but the same error comes again and again :?

Quote:
Are you sure you got that USE updated before trying the emerge again?

I have updated USE in make.conf and then env-update
_________________
-- CV
Back to top
View user's profile Send private message
barlad
l33t
l33t


Joined: 22 Feb 2003
Posts: 673

PostPosted: Tue Apr 22, 2003 12:20 pm    Post subject: Reply with quote

I think it fails because you compiled some dependencies of graphviz without jpeg & gif support. You should look into the dependency tree of graphviz and see what should be logically reemerged.
I just emerged graphviz without a problem and that was with USE="gtk2" as my only USE flag.
Back to top
View user's profile Send private message
charlesnadeau
Apprentice
Apprentice


Joined: 19 May 2003
Posts: 205
Location: Ottawa, Ontario, Canada

PostPosted: Sun Jun 29, 2003 4:12 am    Post subject: Problem with graphviz-1.9 while emerging kdevelop Reply with quote

I just experienced the same problem.
So far I:
    1. Emerged tcl and tk since it is specified in the IUSE clause of it ebuild

    2. Reviewed all my relevant flags like png, jpeg and gif and set them in USE in /etc/make.conf as per the instruction found in this thread. My USE statement is now:
    Code:
    USE="X qt kde cups -gtk -gnome tcltk gif jpeg png"
    Do I need any other flags?

    3. Unmerged (emerge -C) and re-emerged (emerge -uD) media-libs/libpng and media-libs/jpeg with the revised USE line because graphviz depends on them

And I still get this error message:
Code:

!!! ERROR: media-gfx/graphviz-1.9 failed.
!!! Function src_compile, Line 36, Exitcode 2
!!! (no error message)

Did anybody managed to solve this one since the last post on this thread? Is there any "alternative" ways to emerge kdevelop to avoid this problem with graphviz?

Thanks!

Charles
_________________
Charles Nadeau
http://radio.weblogs.com/0111823/
http://charlesnadeau.blogspot.com/search/label/Gentoo
Back to top
View user's profile Send private message
charlesnadeau
Apprentice
Apprentice


Joined: 19 May 2003
Posts: 205
Location: Ottawa, Ontario, Canada

PostPosted: Thu Jul 03, 2003 7:38 am    Post subject: Reply with quote

I took a deeper look at this error message and found two interesting clues:




Could a moderator/developper take a look at the clues in the two bug reports above and modify the ebuilds accordingly? This is way above my level of familiarity with make.Basically the problem seems to be related to the version of libgd.

Thanks!

Charles
_________________
Charles Nadeau
http://radio.weblogs.com/0111823/
http://charlesnadeau.blogspot.com/search/label/Gentoo
Back to top
View user's profile Send private message
saleck
n00b
n00b


Joined: 16 Feb 2003
Posts: 34

PostPosted: Wed Jul 09, 2003 3:39 pm    Post subject: Reply with quote

Is there a solution for this problem yet? I still experience it.;(
Back to top
View user's profile Send private message
ellson
n00b
n00b


Joined: 16 Jul 2003
Posts: 1

PostPosted: Wed Jul 16, 2003 6:44 pm    Post subject: Reply with quote

This should be fixed now in graphviz CVS, or in the snapshot that will be available tomorrow from: http://www.graphviz.org/pub/graphviz/CURRENT/
Back to top
View user's profile Send private message
charlesnadeau
Apprentice
Apprentice


Joined: 19 May 2003
Posts: 205
Location: Ottawa, Ontario, Canada

PostPosted: Thu Jul 17, 2003 3:16 am    Post subject: Reply with quote

Moderator, wwoods,

Could someone change the ebuild to reflect the changes mentionned above by ellson? I submitted a bug report to the group developping graphviz and got this answer from John Ellson:

Quote:

Charles,

Thanks for the problem report.

I have made a change in CVS that I believe will fix this problem. New
snapshot rpms should be available tomorrow from:
http://www.graphviz.org/pub/graphviz/CURRENT/

The problem was that libraries were being referenced twice, and if they
were static archives, as is libjpeg.a on Gentoo, then this would cause
conflicts.
(Side question: Why doesn't Gentoo build libjpeg as shared library?)

The fix is to let the lib...convience.la files do their magic with libtool
and not to specify the libraries again in dotneato/Makefile.am.
The change was to just delete the LIBS=... lines.

John

RCS file: /home/cvsroot/graphviz/dotneato/Makefile.am,v
retrieving revision 1.59
diff -r1.59 Makefile.am
14,23d13
< LIBS = ${FT_LIBS} \
< ${PNG_LIBS} \
< ${JPEG_LIBS} \
< ${Z_LIBS} \
< ${ICONV_LIBS} \
< @LIBS@
<
< # avoid X dependencies
< # ${XPM_LIBS}
<


Thanks!

Charles
_________________
Charles Nadeau
http://radio.weblogs.com/0111823/
http://charlesnadeau.blogspot.com/search/label/Gentoo
Back to top
View user's profile Send private message
Niko_K
Guru
Guru


Joined: 19 Sep 2002
Posts: 484
Location: Rietz/Tirol

PostPosted: Sun Jul 27, 2003 8:26 pm    Post subject: Similiar Problem here Reply with quote

Hi,

I have a very similiar problem to yours:
Code:
/bin/sh ../libtool --mode=link gcc  -march=pentium4 -O3 -pipe -falign-functions=4 -ffast-math -fforce-addr -fomit-frame-pointer -fprefetch-loop-arrays -fPIC -mfpmath=sse,387 -Wall -Wno-unknown-pragmas   -o fontwheeltest  fontwheeltest.o libgdconvenience.la -lfreetype -lpng -ljpeg -lz  -lm
/bin/sh ../libtool --mode=link gcc  -march=pentium4 -O3 -pipe -falign-functions=4 -ffast-math -fforce-addr -fomit-frame-pointer -fprefetch-loop-arrays -fPIC -mfpmath=sse,387 -Wall -Wno-unknown-pragmas   -o fontsizetest  fontsizetest.o libgdconvenience.la -lfreetype -lpng -ljpeg -lz  -lm
gcc -march=pentium4 -O3 -pipe -falign-functions=4 -ffast-math -fforce-addr -fomit-frame-pointer -fprefetch-loop-arrays -fPIC -mfpmath=sse,387 -Wall -Wno-unknown-pragmas -o fontwheeltest fontwheeltest.o  ./.libs/libgdconvenience.al /usr/lib/libfreetype.so -lpng /usr/lib/libjpeg.so -lz -lm
gcc -march=pentium4 -O3 -pipe -falign-functions=4 -ffast-math -fforce-addr -fomit-frame-pointer -fprefetch-loop-arrays -fPIC -mfpmath=sse,387 -Wall -Wno-unknown-pragmas -o fontsizetest fontsizetest.o  ./.libs/libgdconvenience.al /usr/lib/libfreetype.so -lpng /usr/lib/libjpeg.so -lz -lm
/bin/sh ../libtool --mode=link gcc  -march=pentium4 -O3 -pipe -falign-functions=4 -ffast-math -fforce-addr -fomit-frame-pointer -fprefetch-loop-arrays -fPIC -mfpmath=sse,387 -Wall -Wno-unknown-pragmas   -o gdtestft  gdtestft.o libgdconvenience.la -lfreetype -lpng -ljpeg -lz  -lm
/bin/sh ../libtool --mode=link gcc  -march=pentium4 -O3 -pipe -falign-functions=4 -ffast-math -fforce-addr -fomit-frame-pointer -fprefetch-loop-arrays -fPIC -mfpmath=sse,387 -Wall -Wno-unknown-pragmas   -o gddemo  gddemo.o libgdconvenience.la -lfreetype -lpng -ljpeg -lz  -lm
gcc -march=pentium4 -O3 -pipe -falign-functions=4 -ffast-math -fforce-addr -fomit-frame-pointer -fprefetch-loop-arrays -fPIC -mfpmath=sse,387 -Wall -Wno-unknown-pragmas -o gddemo gddemo.o  ./.libs/libgdconvenience.al /usr/lib/libfreetype.so -lpng /usr/lib/libjpeg.so -lz -lm
gcc -march=pentium4 -O3 -pipe -falign-functions=4 -ffast-math -fforce-addr -fomit-frame-pointer -fprefetch-loop-arrays -fPIC -mfpmath=sse,387 -Wall -Wno-unknown-pragmas -o gdtestft gdtestft.o  ./.libs/libgdconvenience.al /usr/lib/libfreetype.so -lpng /usr/lib/libjpeg.so -lz -lm
make[2]: Leaving directory `/var/tmp/portage/graphviz-1.10.20030725.0415/work/graphviz-1.10.20030725.0415/gd'
Making all in dotneato
make[2]: Entering directory `/var/tmp/portage/graphviz-1.10.20030725.0415/work/graphviz-1.10.20030725.0415/dotneato'
Making all in common
make[3]: Entering directory `/var/tmp/portage/graphviz-1.10.20030725.0415/work/graphviz-1.10.20030725.0415/dotneato/common'
source='arrows.c' object='arrows.lo' libtool=yes \
depfile='.deps/arrows.Plo' tmpdepfile='.deps/arrows.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../dotneato/dotgen -I../../dotneato/neatogen -I../../dotneato/twopigen -I../../graph -I../../cdt -I../../pathplan -I../../gd     -march=pentium4 -O3 -pipe -falign-functions=4 -ffast-math -fforce-addr -fomit-frame-pointer -fprefetch-loop-arrays -fPIC -mfpmath=sse,387 -Wall -Wno-unknown-pragmas -c -o arrows.lo `test -f arrows.c || echo './'`arrows.c
sed s/_//g color_names | sort +0 -1 > color_lib
sort: Ungültige Option -- 1
»sort --help« gibt weitere Informationen.
sed: Kann 21 Felder nicht auf stdout schreiben: Datenübergabe unterbrochen (broken pipe)
make[3]: *** [color_lib] Fehler 2
make[3]: *** Warte auf noch nicht beendete Prozesse...
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../dotneato/dotgen -I../../dotneato/neatogen -I../../dotneato/twopigen -I../../graph -I../../cdt -I../../pathplan -I../../gd -march=pentium4 -O3 -pipe -falign-functions=4 -ffast-math -fforce-addr -fomit-frame-pointer -fprefetch-loop-arrays -fPIC -mfpmath=sse,387 -Wall -Wno-unknown-pragmas -c arrows.c -MT arrows.lo -MD -MP -MF .deps/arrows.TPlo  -fPIC -DPIC -o arrows.lo
make[3]: Leaving directory `/var/tmp/portage/graphviz-1.10.20030725.0415/work/graphviz-1.10.20030725.0415/dotneato/common'
make[2]: *** [all-recursive] Fehler 1
make[2]: Leaving directory `/var/tmp/portage/graphviz-1.10.20030725.0415/work/graphviz-1.10.20030725.0415/dotneato'
make[1]: *** [all-recursive] Fehler 1
make[1]: Leaving directory `/var/tmp/portage/graphviz-1.10.20030725.0415/work/graphviz-1.10.20030725.0415'
make: *** [all] Fehler 2

!!! ERROR: media-gfx/graphviz-1.10.20030725.0415 failed.
!!! Function src_compile, Line 36, Exitcode 2
!!! (no error message)

As you can see I created an ebuild for the latest version of graphviz, but there is not a single version in portage that compiles fine for me! Every version exits with the error above!
I also tried to fix my problem by deleting the LIB Lines in dotneato/Makefile.am, but it won't work!
I also changed my make.conf many times!

Can please somebody help me?
Niko
_________________
Meine Homepage
Back to top
View user's profile Send private message
saleck
n00b
n00b


Joined: 16 Feb 2003
Posts: 34

PostPosted: Wed Jul 30, 2003 11:24 am    Post subject: Solved (hope so) Reply with quote

Ok - I was getting really tired of this graphviz thingy - I had four packages always not emerged and noone was doing something about it. So I tried to go the way charlesnadeau suggested:
1. Go to some tmp directory (or create one)
2. tar -zxvf /usr/portage/distfiles/graphviz-1.9.tar.gz
3. chown -R portage:portage graphviz-1.9
4. cd graphviz-1.9/dotneato/
5. vim Makefile.am (or fire your favorite editor:wink: )
6. delete lines 14-21, save and leave the editor
7. cd ../../
8. tar -cf graphviz-1.9.tar graphviz-1.9/*
9. gzip graphviz-1.9.tar
10. mv graphviz-1.9.tar.gz /usr/portage/distfiles
11. vim /usr/portage/media-gfx/graphviz/files/digest-graphviz-1.9
12. you need to change the md5 sum and tha filesize on the last line (for me the line is
Code:
MD5 e39668d2f30c3868925e777fa44d01ea graphviz-1.9.tar.gz 3251027

13. save and leave the editor

Now I was able to emerge graphviz without a problem. I must admit this solution is not clean - I should have probably created a patch and made it part of my portage tree as -r1 but I have not studied the portage that much and it would be surely overwriten by the next 'emerge sync'.

Perhaps if some of the portage maintainers could do this. Hope this helps at least someone.
Back to top
View user's profile Send private message
charlesnadeau
Apprentice
Apprentice


Joined: 19 May 2003
Posts: 205
Location: Ottawa, Ontario, Canada

PostPosted: Sat Oct 18, 2003 11:49 pm    Post subject: Reply with quote

saleck,

I tried your instructions and it worked flawlessly!
However I modified your instructions slightly. At step number 12, I calculated the md5 myself with
Code:
md5sum graphviz-1.9.tar.gz

Thanks for the tip, I can finally emerge kdevelop.

Charles
_________________
Charles Nadeau
http://radio.weblogs.com/0111823/
http://charlesnadeau.blogspot.com/search/label/Gentoo
Back to top
View user's profile Send private message
charlesnadeau
Apprentice
Apprentice


Joined: 19 May 2003
Posts: 205
Location: Ottawa, Ontario, Canada

PostPosted: Tue Jan 27, 2004 6:12 am    Post subject: Reply with quote

I am trying to emerge version 1.10 of graphviz and it seems that the same problem as in 1.9 is resurfacing:

Code:
/bin/sh ../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../dotneato/common -I../../dotneato/pack -I../../graph -I../../cdt -I../../pathplan    -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -c -o voronoi.lo `test -f voronoi.c || echo './'`voronoi.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../dotneato/common -I../../dotneato/pack -I../../graph -I../../cdt -I../../pathplan -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -c voronoi.c -MT voronoi.lo -MD -MP -MF .deps/voronoi.TPlo  -fPIC -DPIC -o voronoi.lo
/bin/sh ../../libtool --mode=link gcc  -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas   -o libneatoconvenience.la   adjust.lo circuit.lo edges.lo find_ints.lo geometry.lo heap.lo hedges.lo info.lo neatoinit.lo intersect.lo legal.lo lu.lo matinv.lo memory.lo poly.lo printvis.lo site.lo solve.lo neatosplines.lo stuff.lo voronoi.lo
mkdir .libs
rm -fr .libs/libneatoconvenience.la .libs/libneatoconvenience.* .libs/libneatoconvenience.*
ar cru .libs/libneatoconvenience.al adjust.lo circuit.lo edges.lo find_ints.lo geometry.lo heap.lo hedges.lo info.lo neatoinit.lo intersect.lo legal.lo lu.lo matinv.lo memory.lo poly.lo printvis.lo site.lo solve.lo neatosplines.lo stuff.lo voronoi.lo
ranlib .libs/libneatoconvenience.al
creating libneatoconvenience.la
(cd .libs && rm -f libneatoconvenience.la && ln -s ../libneatoconvenience.la libneatoconvenience.la)
make[3]: Leaving directory `/var/tmp/portage/graphviz-1.10/work/graphviz-1.10/dotneato/neatogen'
Making all in twopigen
make[3]: Entering directory `/var/tmp/portage/graphviz-1.10/work/graphviz-1.10/dotneato/twopigen'
source='twopiinit.c' object='twopiinit.lo' libtool=yes \
depfile='.deps/twopiinit.Plo' tmpdepfile='.deps/twopiinit.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../dotneato/common -I../../dotneato/neatogen -I../../dotneato/pack -I../../graph -I../../cdt -I../../pathplan    -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -c -o twopiinit.lo `test -f twopiinit.c || echo './'`twopiinit.c
source='circle.c' object='circle.lo' libtool=yes \
depfile='.deps/circle.Plo' tmpdepfile='.deps/circle.TPlo' \
depmode=gcc3 /bin/sh ../../depcomp \
/bin/sh ../../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../dotneato/common -I../../dotneato/neatogen -I../../dotneato/pack -I../../graph -I../../cdt -I../../pathplan    -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -c -o circle.lo `test -f circle.c || echo './'`circle.c
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../dotneato/common -I../../dotneato/neatogen -I../../dotneato/pack -I../../graph -I../../cdt -I../../pathplan -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -c twopiinit.c -MT twopiinit.lo -MD -MP -MF .deps/twopiinit.TPlo  -fPIC -DPIC -o twopiinit.lo
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../dotneato/common -I../../dotneato/neatogen -I../../dotneato/pack -I../../graph -I../../cdt -I../../pathplan -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -c circle.c -MT circle.lo -MD -MP -MF .deps/circle.TPlo  -fPIC -DPIC -o circle.lo
/bin/sh ../../libtool --mode=link gcc  -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas   -o libtwopiconvenience.la   twopiinit.lo circle.lo
mkdir .libs
rm -fr .libs/libtwopiconvenience.la .libs/libtwopiconvenience.* .libs/libtwopiconvenience.*
ar cru .libs/libtwopiconvenience.al twopiinit.lo circle.lo
ranlib .libs/libtwopiconvenience.al
creating libtwopiconvenience.la
(cd .libs && rm -f libtwopiconvenience.la && ln -s ../libtwopiconvenience.la libtwopiconvenience.la)
make[3]: Leaving directory `/var/tmp/portage/graphviz-1.10/work/graphviz-1.10/dotneato/twopigen'
make[3]: Entering directory `/var/tmp/portage/graphviz-1.10/work/graphviz-1.10/dotneato'
source='dotneato.c' object='dotneato.lo' libtool=yes \
depfile='.deps/dotneato.Plo' tmpdepfile='.deps/dotneato.TPlo' \
depmode=gcc3 /bin/sh ../depcomp \
/bin/sh ../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../dotneato/common -I../dotneato/dotgen -I../dotneato/neatogen -I../dotneato/twopigen -I../dotneato/pack -I../graph -I../cdt -I../pathplan    -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -c -o dotneato.lo `test -f dotneato.c || echo './'`dotneato.c
source='dot.c' object='dot.o' libtool=no \
depfile='.deps/dot.Po' tmpdepfile='.deps/dot.TPo' \
depmode=gcc3 /bin/sh ../depcomp \
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../dotneato/common -I../dotneato/dotgen -I../dotneato/neatogen -I../dotneato/twopigen -I../dotneato/pack -I../graph -I../cdt -I../pathplan    -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -c `test -f dot.c || echo './'`dot.c
source='neato.c' object='neato.o' libtool=no \
depfile='.deps/neato.Po' tmpdepfile='.deps/neato.TPo' \
depmode=gcc3 /bin/sh ../depcomp \
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../dotneato/common -I../dotneato/dotgen -I../dotneato/neatogen -I../dotneato/twopigen -I../dotneato/pack -I../graph -I../cdt -I../pathplan    -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -c `test -f neato.c || echo './'`neato.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../dotneato/common -I../dotneato/dotgen -I../dotneato/neatogen -I../dotneato/twopigen -I../dotneato/pack -I../graph -I../cdt -I../pathplan -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -c dotneato.c -MT dotneato.lo -MD -MP -MF .deps/dotneato.TPlo  -fPIC -DPIC -o dotneato.lo
source='twopi.c' object='twopi.o' libtool=no \
depfile='.deps/twopi.Po' tmpdepfile='.deps/twopi.TPo' \
depmode=gcc3 /bin/sh ../depcomp \
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../dotneato/common -I../dotneato/dotgen -I../dotneato/neatogen -I../dotneato/twopigen -I../dotneato/pack -I../graph -I../cdt -I../pathplan    -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -c `test -f twopi.c || echo './'`twopi.c
source='dotmemtest.c' object='dotmemtest.o' libtool=no \
depfile='.deps/dotmemtest.Po' tmpdepfile='.deps/dotmemtest.TPo' \
depmode=gcc3 /bin/sh ../depcomp \
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../dotneato/common -I../dotneato/dotgen -I../dotneato/neatogen -I../dotneato/twopigen -I../dotneato/pack -I../graph -I../cdt -I../pathplan    -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -c `test -f dotmemtest.c || echo './'`dotmemtest.c
source='neatomemtest.c' object='neatomemtest.o' libtool=no \
depfile='.deps/neatomemtest.Po' tmpdepfile='.deps/neatomemtest.TPo' \
depmode=gcc3 /bin/sh ../depcomp \
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../dotneato/common -I../dotneato/dotgen -I../dotneato/neatogen -I../dotneato/twopigen -I../dotneato/pack -I../graph -I../cdt -I../pathplan    -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -c `test -f neatomemtest.c || echo './'`neatomemtest.c
source='twopimemtest.c' object='twopimemtest.o' libtool=no \
depfile='.deps/twopimemtest.Po' tmpdepfile='.deps/twopimemtest.TPo' \
depmode=gcc3 /bin/sh ../depcomp \
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../dotneato/common -I../dotneato/dotgen -I../dotneato/neatogen -I../dotneato/twopigen -I../dotneato/pack -I../graph -I../cdt -I../pathplan    -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -c `test -f twopimemtest.c || echo './'`twopimemtest.c
/bin/sh ../libtool --mode=link gcc  -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas   -o libdotneato.la -rpath /usr/lib/graphviz  dotneato.lo ../dotneato/common/libcommonconvenience.la ../dotneato/dotgen/libdotconvenience.la ../dotneato/neatogen/libneatoconvenience.la ../dotneato/twopigen/libtwopiconvenience.la ../dotneato/pack/libpackconvenience.la ../pathplan/libpathplanconvenience.la ../graph/libgraphconvenience.la ../cdt/libcdtconvenience.la ../gd/libgdconvenience.la -lfreetype -lpng -ljpeg -lz  -lm
/bin/sh ../libtool --mode=link gcc  -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas   -o dot  dot.o ../dotneato/common/libcommonconvenience.la ../dotneato/dotgen/libdotconvenience.la ../dotneato/common/libcommonconvenience.la ../pathplan/libpathplan.la ../graph/libgraph.la ../cdt/libcdt.la ../gd/libgdconvenience.la -lfreetype -lpng -ljpeg -lz  -lm
mkdir .libs
/bin/sh ../libtool --mode=link gcc  -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas   -o neato  neato.o ../dotneato/common/libcommonconvenience.la ../dotneato/neatogen/libneatoconvenience.la ../dotneato/pack/libpackconvenience.la ../dotneato/common/libcommonconvenience.la ../pathplan/libpathplan.la ../graph/libgraph.la ../cdt/libcdt.la ../gd/libgdconvenience.la -lfreetype -lpng -ljpeg -lz  -lm
libtool: link: warning: library `/usr/lib/libjpeg.la' was moved.
libtool: link: warning: library `/usr/lib/libjpeg.la' was moved.
rm -fr .libs/libdotneato.la .libs/libdotneato.* .libs/libdotneato.*
(cd . && ln -s dotneato.lo dotneato.o)
gcc -shared  dotneato.lo -Wl,--whole-archive ../dotneato/common/.libs/libcommonconvenience.al ../dotneato/dotgen/.libs/libdotconvenience.al ../dotneato/neatogen/.libs/libneatoconvenience.al ../dotneato/twopigen/.libs/libtwopiconvenience.al ../dotneato/pack/.libs/libpackconvenience.al ../pathplan/.libs/libpathplanconvenience.al ../graph/.libs/libgraphconvenience.al ../cdt/.libs/libcdtconvenience.al ../gd/.libs/libgdconvenience.al /usr/lib/libjpeg.a -Wl,--no-whole-archive  ../dotneato/common/.libs/libcommonconvenience.al ../dotneato/dotgen/.libs/libdotconvenience.al ../dotneato/neatogen/.libs/libneatoconvenience.al ../dotneato/twopigen/.libs/libtwopiconvenience.al ../dotneato/pack/.libs/libpackconvenience.al ../pathplan/.libs/libpathplanconvenience.al ../graph/.libs/libgraphconvenience.al ../cdt/.libs/libcdtconvenience.al ../gd/.libs/libgdconvenience.al /usr/lib/libfreetype.so -lpng /usr/lib/libjpeg.a -lz -lm           -Wl,-soname -Wl,libdotneato.so.0 -o .libs/libdotneato.so.0.0.0
libtool: link: warning: library `/usr/lib/libjpeg.la' was moved.
libtool: link: warning: library `/usr/lib/libjpeg.la' was moved.
gcc -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -o .libs/dot dot.o  ../dotneato/dotgen/.libs/libdotconvenience.al ../dotneato/common/.libs/libcommonconvenience.al ../pathplan/.libs/libpathplan.so ../graph/.libs/libgraph.so ../cdt/.libs/libcdt.so ../gd/.libs/libgdconvenience.al /usr/lib/libfreetype.so -lpng /usr/lib/libjpeg.a -lz -lm -Wl,--rpath -Wl,/usr/lib/graphviz
creating dot
/bin/sh ../libtool --mode=link gcc  -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas   -o twopi  twopi.o ../dotneato/common/libcommonconvenience.la ../dotneato/twopigen/libtwopiconvenience.la ../dotneato/neatogen/libneatoconvenience.la ../dotneato/pack/libpackconvenience.la ../dotneato/common/libcommonconvenience.la ../pathplan/libpathplan.la ../graph/libgraph.la ../cdt/libcdt.la ../gd/libgdconvenience.la -lfreetype -lpng -ljpeg -lz  -lm
libtool: link: warning: library `/usr/lib/libjpeg.la' was moved.
gcc -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -o .libs/neato neato.o  ../dotneato/neatogen/.libs/libneatoconvenience.al ../dotneato/pack/.libs/libpackconvenience.al ../dotneato/common/.libs/libcommonconvenience.al ../pathplan/.libs/libpathplan.so ../graph/.libs/libgraph.so ../cdt/.libs/libcdt.so ../gd/.libs/libgdconvenience.al /usr/lib/libfreetype.so -lpng /usr/lib/libjpeg.a -lz -lm -Wl,--rpath -Wl,/usr/lib/graphviz
/usr/lib/libjpeg.a(jcapimin.o)(.text+0x0): In function `jpeg_CreateCompress':
: multiple definition of `jpeg_CreateCompress'
../gd/.libs/libgdconvenience.al(jcapimin.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jcapimin.o)(.text+0xf0): In function `jpeg_finish_compress':
: multiple definition of `jpeg_finish_compress'
../gd/.libs/libgdconvenience.al(jcapimin.o)(.text+0xf0): first defined here
/usr/lib/libjpeg.a(jcapimin.o)(.text+0x210): In function `jpeg_destroy_compress':
: multiple definition of `jpeg_destroy_compress'
../gd/.libs/libgdconvenience.al(jcapimin.o)(.text+0x210): first defined here
/usr/lib/libjpeg.a(jcapimin.o)(.text+0x220): In function `jpeg_abort_compress':
: multiple definition of `jpeg_abort_compress'
../gd/.libs/libgdconvenience.al(jcapimin.o)(.text+0x220): first defined here
/usr/lib/libjpeg.a(jcapimin.o)(.text+0x230): In function `jpeg_suppress_tables':
: multiple definition of `jpeg_suppress_tables'
../gd/.libs/libgdconvenience.al(jcapimin.o)(.text+0x230): first defined here
/usr/lib/libjpeg.a(jcapimin.o)(.text+0x280): In function `jpeg_write_marker':
: multiple definition of `jpeg_write_marker'
../gd/.libs/libgdconvenience.al(jcapimin.o)(.text+0x280): first defined here
/usr/lib/libjpeg.a(jcapimin.o)(.text+0x310): In function `jpeg_write_m_header':
: multiple definition of `jpeg_write_m_header'
../gd/.libs/libgdconvenience.al(jcapimin.o)(.text+0x310): first defined here
/usr/lib/libjpeg.a(jcapimin.o)(.text+0x370): In function `jpeg_write_m_byte':
: multiple definition of `jpeg_write_m_byte'
../gd/.libs/libgdconvenience.al(jcapimin.o)(.text+0x370): first defined here
/usr/lib/libjpeg.a(jcapimin.o)(.text+0x390): In function `jpeg_write_tables':
: multiple definition of `jpeg_write_tables'
../gd/.libs/libgdconvenience.al(jcapimin.o)(.text+0x390): first defined here
/usr/lib/libjpeg.a(jcapistd.o)(.text+0x0): In function `jpeg_write_raw_data':
: multiple definition of `jpeg_write_raw_data'
../gd/.libs/libgdconvenience.al(jcapistd.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jcapistd.o)(.text+0xd0): In function `jpeg_start_compress':
: multiple definition of `jpeg_start_compress'
../gd/.libs/libgdconvenience.al(jcapistd.o)(.text+0xd0): first defined here
/usr/lib/libjpeg.a(jcapistd.o)(.text+0x160): In function `jpeg_write_scanlines':
: multiple definition of `jpeg_write_scanlines'
../gd/.libs/libgdconvenience.al(jcapistd.o)(.text+0x160): first defined here
/usr/lib/libjpeg.a(jctrans.o)(.text+0x0): In function `jpeg_copy_critical_parameters':
: multiple definition of `jpeg_copy_critical_parameters'
../gd/.libs/libgdconvenience.al(jctrans.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jctrans.o)(.text+0x260): In function `jpeg_write_coefficients':
: multiple definition of `jpeg_write_coefficients'
../gd/.libs/libgdconvenience.al(jctrans.o)(.text+0x260): first defined here
/usr/lib/libjpeg.a(jcparam.o)(.text+0x0): In function `jpeg_set_defaults':
: multiple definition of `jpeg_set_defaults'
../gd/.libs/libgdconvenience.al(jcparam.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jcparam.o)(.text+0xcc0): In function `jpeg_add_quant_table':
: multiple definition of `jpeg_add_quant_table'
../gd/.libs/libgdconvenience.al(jcparam.o)(.text+0xcc0): first defined here
/usr/lib/libjpeg.a(jcparam.o)(.text+0x3a0): In function `jpeg_default_colorspace':
: multiple definition of `jpeg_default_colorspace'
../gd/.libs/libgdconvenience.al(jcparam.o)(.text+0x3a0): first defined here
/usr/lib/libjpeg.a(jcparam.o)(.text+0x420): In function `jpeg_set_colorspace':
: multiple definition of `jpeg_set_colorspace'
../gd/.libs/libgdconvenience.al(jcparam.o)(.text+0x420): first defined here
/usr/lib/libjpeg.a(jcparam.o)(.text+0x7e0): In function `jpeg_simple_progression':
: multiple definition of `jpeg_simple_progression'
../gd/.libs/libgdconvenience.al(jcparam.o)(.text+0x7e0): first defined here
/usr/lib/libjpeg.a(jcparam.o)(.text+0xda0): In function `jpeg_set_linear_quality':
: multiple definition of `jpeg_set_linear_quality'
../gd/.libs/libgdconvenience.al(jcparam.o)(.text+0xda0): first defined here
/usr/lib/libjpeg.a(jcparam.o)(.text+0xf20): In function `jpeg_quality_scaling':
: multiple definition of `jpeg_quality_scaling'
../gd/.libs/libgdconvenience.al(jcparam.o)(.text+0xf20): first defined here
/usr/lib/libjpeg.a(jcparam.o)(.text+0xf70): In function `jpeg_set_quality':
: multiple definition of `jpeg_set_quality'
../gd/.libs/libgdconvenience.al(jcparam.o)(.text+0xf70): first defined here
/usr/lib/libjpeg.a(jdatadst.o)(.text+0x0): In function `jpeg_stdio_dest':
: multiple definition of `jpeg_stdio_dest'
../gd/.libs/libgdconvenience.al(jdatadst.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jcinit.o)(.text+0x0): In function `jinit_compress_master':
: multiple definition of `jinit_compress_master'
../gd/.libs/libgdconvenience.al(jcinit.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jcmaster.o)(.text+0x0): In function `jinit_c_master_control':
: multiple definition of `jinit_c_master_control'
../gd/.libs/libgdconvenience.al(jcmaster.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jcmarker.o)(.text+0x0): In function `jinit_marker_writer':
: multiple definition of `jinit_marker_writer'
../gd/.libs/libgdconvenience.al(jcmarker.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jcmainct.o)(.text+0xc0): In function `jinit_c_main_controller':
: multiple definition of `jinit_c_main_controller'
../gd/.libs/libgdconvenience.al(jcmainct.o)(.text+0xc0): first defined here
/usr/lib/libjpeg.a(jcprepct.o)(.text+0x0): In function `jinit_c_prep_controller':
: multiple definition of `jinit_c_prep_controller'
../gd/.libs/libgdconvenience.al(jcprepct.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jccoefct.o)(.text+0x760): In function `jinit_c_coef_controller':
: multiple definition of `jinit_c_coef_controller'
../gd/.libs/libgdconvenience.al(jccoefct.o)(.text+0x760): first defined here
/usr/lib/libjpeg.a(jccolor.o)(.text+0x0): In function `jinit_color_converter':
: multiple definition of `jinit_color_converter'
../gd/.libs/libgdconvenience.al(jccolor.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jcsample.o)(.text+0x0): In function `jinit_downsampler':
: multiple definition of `jinit_downsampler'
../gd/.libs/libgdconvenience.al(jcsample.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jchuff.o)(.text+0x0): In function `jpeg_make_c_derived_tbl':
: multiple definition of `jpeg_make_c_derived_tbl'
../gd/.libs/libgdconvenience.al(jchuff.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jchuff.o)(.text+0x470): In function `jpeg_gen_optimal_table':
: multiple definition of `jpeg_gen_optimal_table'
../gd/.libs/libgdconvenience.al(jchuff.o)(.text+0x470): first defined here
/usr/lib/libjpeg.a(jchuff.o)(.text+0x830): In function `jinit_huff_encoder':
: multiple definition of `jinit_huff_encoder'
../gd/.libs/libgdconvenience.al(jchuff.o)(.text+0x830): first defined here
/usr/lib/libjpeg.a(jcphuff.o)(.text+0xe90): In function `jinit_phuff_encoder':
: multiple definition of `jinit_phuff_encoder'
../gd/.libs/libgdconvenience.al(jcphuff.o)(.text+0xe90): first defined here
/usr/lib/libjpeg.a(jcdctmgr.o)(.text+0x0): In function `jinit_forward_dct':
: multiple definition of `jinit_forward_dct'
../gd/.libs/libgdconvenience.al(jcdctmgr.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jfdctfst.o)(.text+0x0): In function `jpeg_fdct_ifast':
: multiple definition of `jpeg_fdct_ifast'
../gd/.libs/libgdconvenience.al(jfdctfst.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jfdctflt.o)(.text+0x0): In function `jpeg_fdct_float':
: multiple definition of `jpeg_fdct_float'
../gd/.libs/libgdconvenience.al(jfdctflt.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jfdctint.o)(.text+0x0): In function `jpeg_fdct_islow':
: multiple definition of `jpeg_fdct_islow'
../gd/.libs/libgdconvenience.al(jfdctint.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jdapimin.o)(.text+0x0): In function `jpeg_CreateDecompress':
: multiple definition of `jpeg_CreateDecompress'
../gd/.libs/libgdconvenience.al(jdapimin.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jdapimin.o)(.text+0x1c0): In function `mmxsupport':
: multiple definition of `mmxsupport'
../gd/.libs/libgdconvenience.al(jdapimin.o)(.text+0x1c0): first defined here
/usr/lib/libjpeg.a(jdapimin.o)(.text+0x120): In function `jpeg_consume_input':
: multiple definition of `jpeg_consume_input'
../gd/.libs/libgdconvenience.al(jdapimin.o)(.text+0x120): first defined here
/usr/lib/libjpeg.a(jdapimin.o)(.text+0x200): In function `jpeg_destroy_decompress':
: multiple definition of `jpeg_destroy_decompress'
../gd/.libs/libgdconvenience.al(jdapimin.o)(.text+0x200): first defined here
/usr/lib/libjpeg.a(jdapimin.o)(.text+0x210): In function `jpeg_abort_decompress':
: multiple definition of `jpeg_abort_decompress'
../gd/.libs/libgdconvenience.al(jdapimin.o)(.text+0x210): first defined here
/usr/lib/libjpeg.a(jdapimin.o)(.text+0x220): In function `jpeg_read_header':
: multiple definition of `jpeg_read_header'
../gd/.libs/libgdconvenience.al(jdapimin.o)(.text+0x220): first defined here
/usr/lib/libjpeg.a(jdapimin.o)(.text+0x2a0): In function `jpeg_input_complete':
: multiple definition of `jpeg_input_complete'
../gd/.libs/libgdconvenience.al(jdapimin.o)(.text+0x2a0): first defined here
/usr/lib/libjpeg.a(jdapimin.o)(.text+0x2f0): In function `jpeg_has_multiple_scans':
: multiple definition of `jpeg_has_multiple_scans'
../gd/.libs/libgdconvenience.al(jdapimin.o)(.text+0x2f0): first defined here
/usr/lib/libjpeg.a(jdapimin.o)(.text+0x340): In function `jpeg_finish_decompress':
: multiple definition of `jpeg_finish_decompress'
../gd/.libs/libgdconvenience.al(jdapimin.o)(.text+0x340): first defined here
/usr/lib/libjpeg.a(jdapistd.o)(.text+0x0): In function `jpeg_start_decompress':
: multiple definition of `jpeg_start_decompress'
../gd/.libs/libgdconvenience.al(jdapistd.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jdapistd.o)(.text+0x210): In function `jpeg_read_scanlines':
: multiple definition of `jpeg_read_scanlines'
../gd/.libs/libgdconvenience.al(jdapistd.o)(.text+0x210): first defined here
/usr/lib/libjpeg.a(jdapistd.o)(.text+0x2b0): In function `jpeg_read_raw_data':
: multiple definition of `jpeg_read_raw_data'
../gd/.libs/libgdconvenience.al(jdapistd.o)(.text+0x2b0): first defined here
/usr/lib/libjpeg.a(jdapistd.o)(.text+0x370): In function `jpeg_start_output':
: multiple definition of `jpeg_start_output'
../gd/.libs/libgdconvenience.al(jdapistd.o)(.text+0x370): first defined here
/usr/lib/libjpeg.a(jdapistd.o)(.text+0x3f0): In function `jpeg_finish_output':
: multiple definition of `jpeg_finish_output'
../gd/.libs/libgdconvenience.al(jdapistd.o)(.text+0x3f0): first defined here
/usr/lib/libjpeg.a(jdtrans.o)(.text+0x0): In function `jpeg_read_coefficients':
: multiple definition of `jpeg_read_coefficients'
../gd/.libs/libgdconvenience.al(jdtrans.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jdatasrc.o)(.text+0x0): In function `jpeg_stdio_src':
: multiple definition of `jpeg_stdio_src'
../gd/.libs/libgdconvenience.al(jdatasrc.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jdmaster.o)(.text+0x0): In function `jpeg_calc_output_dimensions':
: multiple definition of `jpeg_calc_output_dimensions'
../gd/.libs/libgdconvenience.al(jdmaster.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jdmaster.o)(.text+0x3a0): In function `jpeg_new_colormap':
: multiple definition of `jpeg_new_colormap'
../gd/.libs/libgdconvenience.al(jdmaster.o)(.text+0x3a0): first defined here
/usr/lib/libjpeg.a(jdmaster.o)(.text+0x420): In function `jinit_master_decompress':
: multiple definition of `jinit_master_decompress'
../gd/.libs/libgdconvenience.al(jdmaster.o)(.text+0x420): first defined here
/usr/lib/libjpeg.a(jdinput.o)(.text+0x1a0): In function `jinit_input_controller':
: multiple definition of `jinit_input_controller'
../gd/.libs/libgdconvenience.al(jdinput.o)(.text+0x1a0): first defined here
/usr/lib/libjpeg.a(jdmarker.o)(.text+0x0): In function `jpeg_resync_to_restart':
: multiple definition of `jpeg_resync_to_restart'
../gd/.libs/libgdconvenience.al(jdmarker.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jdmarker.o)(.text+0x150): In function `jpeg_save_markers':
: multiple definition of `jpeg_save_markers'
../gd/.libs/libgdconvenience.al(jdmarker.o)(.text+0x150): first defined here
/usr/lib/libjpeg.a(jdmarker.o)(.text+0x220): In function `jinit_marker_reader':
: multiple definition of `jinit_marker_reader'
../gd/.libs/libgdconvenience.al(jdmarker.o)(.text+0x220): first defined here
/usr/lib/libjpeg.a(jdmarker.o)(.text+0x2e0): In function `jpeg_set_marker_processor':
: multiple definition of `jpeg_set_marker_processor'
../gd/.libs/libgdconvenience.al(jdmarker.o)(.text+0x2e0): first defined here
/usr/lib/libjpeg.a(jdhuff.o)(.text+0x0): In function `jpeg_make_d_derived_tbl':
: multiple definition of `jpeg_make_d_derived_tbl'
../gd/.libs/libgdconvenience.al(jdhuff.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jdhuff.o)(.text+0x3a0): In function `jpeg_fill_bit_buffer':
: multiple definition of `jpeg_fill_bit_buffer'
../gd/.libs/libgdconvenience.al(jdhuff.o)(.text+0x3a0): first defined here
/usr/lib/libjpeg.a(jdhuff.o)(.text+0x4e0): In function `jpeg_huff_decode':
: multiple definition of `jpeg_huff_decode'
../gd/.libs/libgdconvenience.al(jdhuff.o)(.text+0x4e0): first defined here
/usr/lib/libjpeg.a(jdhuff.o)(.text+0x610): In function `jinit_huff_decoder':
: multiple definition of `jinit_huff_decoder'
../gd/.libs/libgdconvenience.al(jdhuff.o)(.text+0x610): first defined here
/usr/lib/libjpeg.a(jdphuff.o)(.text+0xd90): In function `jinit_phuff_decoder':
: multiple definition of `jinit_phuff_decoder'
../gd/.libs/libgdconvenience.al(jdphuff.o)(.text+0xd90): first defined here
/usr/lib/libjpeg.a(jdmainct.o)(.text+0x2d0): In function `jinit_d_main_controller':
: multiple definition of `jinit_d_main_controller'
../gd/.libs/libgdconvenience.al(jdmainct.o)(.text+0x2d0): first defined here
/usr/lib/libjpeg.a(jdcoefct.o)(.text+0xae0): In function `jinit_d_coef_controller':
: multiple definition of `jinit_d_coef_controller'
../gd/.libs/libgdconvenience.al(jdcoefct.o)(.text+0xae0): first defined here
/usr/lib/libjpeg.a(jdpostct.o)(.text+0x0): In function `jinit_d_post_controller':
: multiple definition of `jinit_d_post_controller'
../gd/.libs/libgdconvenience.al(jdpostct.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jddctmgr.o)(.text+0x0): In function `jinit_inverse_dct':
: multiple definition of `jinit_inverse_dct'
../gd/.libs/libgdconvenience.al(jddctmgr.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jidctfst.o)(.text+0x0): In function `jpeg_idct_ifast_orig':
: multiple definition of `jpeg_idct_ifast_orig'
../gd/.libs/libgdconvenience.al(jidctfst.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jidctfst.o)(.rodata+0x0): multiple definition of `_fix_141'
../gd/.libs/libgdconvenience.al(jidctfst.o)(.rodata+0x0): first defined here
/usr/lib/libjpeg.a(jidctfst.o)(.rodata+0x8): multiple definition of `_fix_184n261'
../gd/.libs/libgdconvenience.al(jidctfst.o)(.rodata+0x8): first defined here
/usr/lib/libjpeg.a(jidctfst.o)(.rodata+0x10): multiple definition of `_fix_184'
../gd/.libs/libgdconvenience.al(jidctfst.o)(.rodata+0x10): first defined here
/usr/lib/libjpeg.a(jidctfst.o)(.rodata+0x18): multiple definition of `_fix_n184'
../gd/.libs/libgdconvenience.al(jidctfst.o)(.rodata+0x18): first defined here
/usr/lib/libjpeg.a(jidctfst.o)(.rodata+0x20): multiple definition of `_fix_108n184'
../gd/.libs/libgdconvenience.al(jidctfst.o)(.rodata+0x20): first defined here
/usr/lib/libjpeg.a(jidctfst.o)(.rodata+0x28): multiple definition of `_const_0x0080'
../gd/.libs/libgdconvenience.al(jidctfst.o)(.rodata+0x28): first defined here
/usr/lib/libjpeg.a(jidctfst.o)(.text+0x740): In function `jpeg_idct_ifast':
: multiple definition of `jpeg_idct_ifast'
../gd/.libs/libgdconvenience.al(jidctfst.o)(.text+0x740): first defined here
/usr/lib/libjpeg.a(jidctfst.o)(.text+0xfa0): In function `jpeg_idct_ifast_mmx':
: multiple definition of `jpeg_idct_ifast_mmx'
../gd/.libs/libgdconvenience.al(jidctfst.o)(.text+0xfa0): first defined here
/usr/lib/libjpeg.a(jidctflt.o)(.text+0x0): In function `jpeg_idct_float':
: multiple definition of `jpeg_idct_float'
../gd/.libs/libgdconvenience.al(jidctflt.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jidctint.o)(.text+0x0): In function `jpeg_idct_islow':
: multiple definition of `jpeg_idct_islow'
../gd/.libs/libgdconvenience.al(jidctint.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jidctint.o)(.text+0xdd0): In function `domidct8x8llmW':
: multiple definition of `domidct8x8llmW'
../gd/.libs/libgdconvenience.al(jidctint.o)(.text+0xdd0): first defined here
/usr/lib/libjpeg.a(jidctred.o)(.text+0x0): In function `jpeg_idct_4x4':
: multiple definition of `jpeg_idct_4x4'
../gd/.libs/libgdconvenience.al(jidctred.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jidctred.o)(.text+0x560): In function `jpeg_idct_2x2':
: multiple definition of `jpeg_idct_2x2'
../gd/.libs/libgdconvenience.al(jidctred.o)(.text+0x560): first defined here
/usr/lib/libjpeg.a(jidctred.o)(.text+0x7d0): In function `jpeg_idct_1x1':
: multiple definition of `jpeg_idct_1x1'
../gd/.libs/libgdconvenience.al(jidctred.o)(.text+0x7d0): first defined here
/usr/lib/libjpeg.a(jdsample.o)(.data+0x0): multiple definition of `mul3w'
../gd/.libs/libgdconvenience.al(jdsample.o)(.data+0x0): first defined here
/usr/lib/libjpeg.a(jdsample.o)(.data+0x8): multiple definition of `mul9w'
../gd/.libs/libgdconvenience.al(jdsample.o)(.data+0x8): first defined here
/usr/lib/libjpeg.a(jdsample.o)(.data+0x10): multiple definition of `mul9ws'
../gd/.libs/libgdconvenience.al(jdsample.o)(.data+0x10): first defined here
/usr/lib/libjpeg.a(jdsample.o)(.data+0x18): multiple definition of `mul3ws'
../gd/.libs/libgdconvenience.al(jdsample.o)(.data+0x18): first defined here
/usr/lib/libjpeg.a(jdsample.o)(.data+0x20): multiple definition of `bias7w'
../gd/.libs/libgdconvenience.al(jdsample.o)(.data+0x20): first defined here
/usr/lib/libjpeg.a(jdsample.o)(.data+0x28): multiple definition of `bias8w'
../gd/.libs/libgdconvenience.al(jdsample.o)(.data+0x28): first defined here
/usr/lib/libjpeg.a(jdsample.o)(.data+0x30): multiple definition of `bias1w'
../gd/.libs/libgdconvenience.al(jdsample.o)(.data+0x30): first defined here
/usr/lib/libjpeg.a(jdsample.o)(.data+0x38): multiple definition of `bias2w'
../gd/.libs/libgdconvenience.al(jdsample.o)(.data+0x38): first defined here
/usr/lib/libjpeg.a(jdsample.o)(.data+0x40): multiple definition of `mask1'
../gd/.libs/libgdconvenience.al(jdsample.o)(.data+0x40): first defined here
/usr/lib/libjpeg.a(jdsample.o)(.data+0x48): multiple definition of `mask2'
../gd/.libs/libgdconvenience.al(jdsample.o)(.data+0x48): first defined here
/usr/lib/libjpeg.a(jdsample.o)(.data+0x50): multiple definition of `noval'
../gd/.libs/libgdconvenience.al(jdsample.o)(.data+0x50): first defined here
/usr/lib/libjpeg.a(jdsample.o)(.data+0x58): multiple definition of `input0'
../gd/.libs/libgdconvenience.al(jdsample.o)(.data+0x58): first defined here
/usr/lib/libjpeg.a(jdsample.o)(.data+0x60): multiple definition of `input1'
../gd/.libs/libgdconvenience.al(jdsample.o)(.data+0x60): first defined here
/usr/lib/libjpeg.a(jdsample.o)(.text+0x0): In function `jinit_upsampler':
: multiple definition of `jinit_upsampler'
../gd/.libs/libgdconvenience.al(jdsample.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jdcolor.o)(.text+0x0): In function `jinit_color_deconverter':
: multiple definition of `jinit_color_deconverter'
../gd/.libs/libgdconvenience.al(jdcolor.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jquant1.o)(.text+0x0): In function `jinit_1pass_quantizer':
: multiple definition of `jinit_1pass_quantizer'
../gd/.libs/libgdconvenience.al(jquant1.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jquant2.o)(.text+0x0): In function `jinit_2pass_quantizer':
: multiple definition of `jinit_2pass_quantizer'
../gd/.libs/libgdconvenience.al(jquant2.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jdmerge.o)(.data+0x0): multiple definition of `const1'
../gd/.libs/libgdconvenience.al(jdmerge.o)(.data+0x0): first defined here
/usr/lib/libjpeg.a(jdmerge.o)(.data+0x8): multiple definition of `const2'
../gd/.libs/libgdconvenience.al(jdmerge.o)(.data+0x8): first defined here
/usr/lib/libjpeg.a(jdmerge.o)(.data+0x10): multiple definition of `const5'
../gd/.libs/libgdconvenience.al(jdmerge.o)(.data+0x10): first defined here
/usr/lib/libjpeg.a(jdmerge.o)(.data+0x18): multiple definition of `const6'
../gd/.libs/libgdconvenience.al(jdmerge.o)(.data+0x18): first defined here
/usr/lib/libjpeg.a(jdmerge.o)(.data+0x20): multiple definition of `const05'
../gd/.libs/libgdconvenience.al(jdmerge.o)(.data+0x20): first defined here
/usr/lib/libjpeg.a(jdmerge.o)(.data+0x28): multiple definition of `const15'
../gd/.libs/libgdconvenience.al(jdmerge.o)(.data+0x28): first defined here
/usr/lib/libjpeg.a(jdmerge.o)(.data+0x30): multiple definition of `const45'
../gd/.libs/libgdconvenience.al(jdmerge.o)(.data+0x30): first defined here
/usr/lib/libjpeg.a(jdmerge.o)(.data+0x38): multiple definition of `const55'
../gd/.libs/libgdconvenience.al(jdmerge.o)(.data+0x38): first defined here
/usr/lib/libjpeg.a(jdmerge.o)(.data+0x40): multiple definition of `const128'
../gd/.libs/libgdconvenience.al(jdmerge.o)(.data+0x40): first defined here
/usr/lib/libjpeg.a(jdmerge.o)(.data+0x48): multiple definition of `empty'
../gd/.libs/libgdconvenience.al(jdmerge.o)(.data+0x48): first defined here
/usr/lib/libjpeg.a(jdmerge.o)(.data+0x50): multiple definition of `davemask'
../gd/.libs/libgdconvenience.al(jdmerge.o)(.data+0x50): first defined here
/usr/lib/libjpeg.a(jdmerge.o)(.text+0x0): In function `jinit_merged_upsampler':
: multiple definition of `jinit_merged_upsampler'
../gd/.libs/libgdconvenience.al(jdmerge.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jcomapi.o)(.text+0x0): In function `jpeg_abort':
: multiple definition of `jpeg_abort'
../gd/.libs/libgdconvenience.al(jcomapi.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jcomapi.o)(.text+0x60): In function `jpeg_destroy':
: multiple definition of `jpeg_destroy'
../gd/.libs/libgdconvenience.al(jcomapi.o)(.text+0x60): first defined here
/usr/lib/libjpeg.a(jcomapi.o)(.text+0x90): In function `jpeg_alloc_quant_table':
: multiple definition of `jpeg_alloc_quant_table'
../gd/.libs/libgdconvenience.al(jcomapi.o)(.text+0x90): first defined here
/usr/lib/libjpeg.a(jcomapi.o)(.text+0xc0): In function `jpeg_alloc_huff_table':
: multiple definition of `jpeg_alloc_huff_table'
../gd/.libs/libgdconvenience.al(jcomapi.o)(.text+0xc0): first defined here
/usr/lib/libjpeg.a(jutils.o)(.rodata+0x0): multiple definition of `jpeg_natural_order'
../gd/.libs/libgdconvenience.al(jutils.o)(.rodata+0x0): first defined here
/usr/lib/libjpeg.a(jutils.o)(.text+0x0): In function `jzero_far':
: multiple definition of `jzero_far'
../gd/.libs/libgdconvenience.al(jutils.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jutils.o)(.text+0x30): In function `jdiv_round_up':
: multiple definition of `jdiv_round_up'
../gd/.libs/libgdconvenience.al(jutils.o)(.text+0x30): first defined here
/usr/lib/libjpeg.a(jutils.o)(.text+0x50): In function `jround_up':
: multiple definition of `jround_up'
../gd/.libs/libgdconvenience.al(jutils.o)(.text+0x50): first defined here
/usr/lib/libjpeg.a(jutils.o)(.text+0x80): In function `jcopy_sample_rows':
: multiple definition of `jcopy_sample_rows'
../gd/.libs/libgdconvenience.al(jutils.o)(.text+0x80): first defined here
/usr/lib/libjpeg.a(jutils.o)(.text+0xe0): In function `jcopy_block_row':
: multiple definition of `jcopy_block_row'
../gd/.libs/libgdconvenience.al(jutils.o)(.text+0xe0): first defined here
/usr/lib/libjpeg.a(jerror.o)(.rodata+0x0): multiple definition of `jpeg_std_message_table'
../gd/.libs/libgdconvenience.al(jerror.o)(.rodata+0x0): first defined here
/usr/lib/libjpeg.a(jerror.o)(.text+0x0): In function `jpeg_std_error':
: multiple definition of `jpeg_std_error'
../gd/.libs/libgdconvenience.al(jerror.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jmemmgr.o)(.text+0x0): In function `jinit_memory_mgr':
: multiple definition of `jinit_memory_mgr'
../gd/.libs/libgdconvenience.al(jmemmgr.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jmemnobs.o)(.text+0x0): In function `jpeg_get_small':
: multiple definition of `jpeg_get_small'
../gd/.libs/libgdconvenience.al(jmemnobs.o)(.text+0x0): first defined here
/usr/lib/libjpeg.a(jmemnobs.o)(.text+0x10): In function `jpeg_free_small':
: multiple definition of `jpeg_free_small'
../gd/.libs/libgdconvenience.al(jmemnobs.o)(.text+0x10): first defined here
/usr/lib/libjpeg.a(jmemnobs.o)(.text+0x20): In function `jpeg_get_large':
: multiple definition of `jpeg_get_large'
../gd/.libs/libgdconvenience.al(jmemnobs.o)(.text+0x20): first defined here
/usr/lib/libjpeg.a(jmemnobs.o)(.text+0x30): In function `jpeg_free_large':
: multiple definition of `jpeg_free_large'
../gd/.libs/libgdconvenience.al(jmemnobs.o)(.text+0x30): first defined here
/usr/lib/libjpeg.a(jmemnobs.o)(.text+0x40): In function `jpeg_mem_available':
: multiple definition of `jpeg_mem_available'
../gd/.libs/libgdconvenience.al(jmemnobs.o)(.text+0x40): first defined here
/usr/lib/libjpeg.a(jmemnobs.o)(.text+0x50): In function `jpeg_open_backing_store':
: multiple definition of `jpeg_open_backing_store'
../gd/.libs/libgdconvenience.al(jmemnobs.o)(.text+0x50): first defined here
/usr/lib/libjpeg.a(jmemnobs.o)(.text+0x70): In function `jpeg_mem_init':
: multiple definition of `jpeg_mem_init'
../gd/.libs/libgdconvenience.al(jmemnobs.o)(.text+0x70): first defined here
/usr/lib/libjpeg.a(jmemnobs.o)(.text+0x80): In function `jpeg_mem_term':
: multiple definition of `jpeg_mem_term'
../gd/.libs/libgdconvenience.al(jmemnobs.o)(.text+0x80): first defined here
collect2: ld returned 1 exit status
make[3]: *** [libdotneato.la] Error 1
make[3]: *** Waiting for unfinished jobs....
creating neato
libtool: link: warning: library `/usr/lib/libjpeg.la' was moved.
libtool: link: warning: library `/usr/lib/libjpeg.la' was moved.
gcc -mcpu=pentium3 -O3 -mmmx -Wall -Wno-unknown-pragmas -o .libs/twopi twopi.o  ../dotneato/twopigen/.libs/libtwopiconvenience.al ../dotneato/neatogen/.libs/libneatoconvenience.al ../dotneato/pack/.libs/libpackconvenience.al ../dotneato/common/.libs/libcommonconvenience.al ../pathplan/.libs/libpathplan.so ../graph/.libs/libgraph.so ../cdt/.libs/libcdt.so ../gd/.libs/libgdconvenience.al /usr/lib/libfreetype.so -lpng /usr/lib/libjpeg.a -lz -lm -Wl,--rpath -Wl,/usr/lib/graphviz
creating twopi
make[3]: Leaving directory `/var/tmp/portage/graphviz-1.10/work/graphviz-1.10/dotneato'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/var/tmp/portage/graphviz-1.10/work/graphviz-1.10/dotneato'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/tmp/portage/graphviz-1.10/work/graphviz-1.10'
make: *** [all] Error 2

!!! ERROR: media-gfx/graphviz-1.10 failed.
!!! Function src_compile, Line 36, Exitcode 2
!!! (no error message)



Anybody else with the same isue?

Charles
_________________
Charles Nadeau
http://radio.weblogs.com/0111823/
http://charlesnadeau.blogspot.com/search/label/Gentoo
Back to top
View user's profile Send private message
saleck
n00b
n00b


Joined: 16 Feb 2003
Posts: 34

PostPosted: Wed Jan 28, 2004 8:15 pm    Post subject: Reply with quote

yep, the bug wasn't removed
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Portage & Programming All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum