Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 14689 - DSniff won't compile
Summary: DSniff won't compile
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal major (vote)
Assignee: Daniel Ahlberg (RETIRED)
URL: http://forums.gentoo.org/viewtopic.ph...
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-01-28 16:05 UTC by Andrew
Modified: 2003-02-02 10:16 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew 2003-01-28 16:05:26 UTC
I'm getting some compile errors when trying to compile DSniff.  Another person
in the forums was able to verify this was a problem with Portage.  See more
information (errors, verification, etc..):
http://forums.gentoo.org/viewtopic.php?t=32171
Comment 1 Alastair Tse (RETIRED) gentoo-dev 2003-01-31 08:08:36 UTC
in /usr/portage/net-analyzer/dsniff/dsniff-2.3.ebuild, try changing "emake" to "make".

you're both failing on make doing both rpcgen and gcc at the same time. rpcgen hasn't finished generating the nfs_prot.h/c file or mount.h/c file from the *.x equivalents, so gcc only reads a partially generated file, hence the unteriminated #ifdef errors.

emake does make in -j2 mode (eg. 2 in parallel) but normal make just does it sequentially. if it works, then please report it so someone can fix the dsniff ebuild officially.

cheers,

alastair

Comment 2 Andrew 2003-01-31 16:43:50 UTC
Sure enough, it compiles after this.  I guess someone needs to make this change -- that's for the pointer in the right direction.
Comment 3 Daniel Ahlberg (RETIRED) gentoo-dev 2003-02-02 10:16:28 UTC
Fixed, thanks for finding this!