Where can i find the graphical overview of the linux kernel source
tree? I saw a big jpg and a link to a homepage, but i lost the
informations.
Regards. Frank.
--
Frank Fiene, SYNTAGS GmbH, Im Defdahl 5-10, D-44141 Dortmund, Germany
Security, Cryptography, Networks, Software Development
http://www.syntags.de mailto:[email protected]
On Fri, Jul 27, 2001 at 01:19:03PM +0200, Frank Fiene wrote:
> Where can i find the graphical overview of the linux kernel source
> tree? I saw a big jpg and a link to a homepage, but i lost the
> informations.
You probably mean the LGP (Linux Graph Project) by Rusty. It was
accessible through lgp.linuxcare.au, but it is no longer there. If
you wish, I'd send you a copy via private mail.
MfG, JBG
Frank Fiene <[email protected]> [010727 13:19] wrote:
> Where can i find the graphical overview of the linux kernel source
> tree? I saw a big jpg and a link to a homepage, but i lost the
> informations.
This is what you're looking for:
http://fcgp.sourceforge.net/
Cheers,
Gordon
--
+---------------------------------------------------------------------+
| Gordon Fraser | Your mouse has moved. Windows NT must be |
| [email protected] | restarted for the change to take effect.|
| ICQ: 12413204 | Reboot now? [ OK ] |
| http://www.freakzone.net | |
+---------------------------------------------------------------------+
On Friday, 27. July 2001 14:52, Gordon Fraser wrote:
> Frank Fiene <[email protected]> [010727 13:19] wrote:
> > Where can i find the graphical overview of the linux kernel
> > source tree? I saw a big jpg and a link to a homepage, but i lost
> > the informations.
>
> This is what you're looking for:
> http://fcgp.sourceforge.net/
Thanks, Gordon and Jan-Benedict.
lgp version 2.4.0a works fine but the latest 2.5.1 does not. Compile
error is
data2ps.o: In function `d2p_draw_line':
/home/ffiene/docs/lgp-2.5.1/data2ps.c:180: undefined reference to
`cos'
/home/ffiene/docs/lgp-2.5.1/data2ps.c:181: undefined reference to
`sin'
The files data2ps.c in both versions have not man different lines of
code, so i didn't find the error.
Regards. Frank
--
Frank Fiene, SYNTAGS GmbH, Im Defdahl 5-10, D-44141 Dortmund, Germany
Security, Cryptography, Networks, Software Development
http://www.syntags.de mailto:[email protected]
On Friday, 27. July 2001 15:37, Frank Fiene wrote:
> On Friday, 27. July 2001 14:52, Gordon Fraser wrote:
> > Frank Fiene <[email protected]> [010727 13:19] wrote:
> > > Where can i find the graphical overview of the linux kernel
> > > source tree? I saw a big jpg and a link to a homepage, but i
> > > lost the informations.
> >
> > This is what you're looking for:
> > http://fcgp.sourceforge.net/
>
> Thanks, Gordon and Jan-Benedict.
>
> lgp version 2.4.0a works fine but the latest 2.5.1 does not.
> Compile error is
> data2ps.o: In function `d2p_draw_line':
> /home/ffiene/docs/lgp-2.5.1/data2ps.c:180: undefined reference to
> `cos'
> /home/ffiene/docs/lgp-2.5.1/data2ps.c:181: undefined reference to
> `sin'
>
> The files data2ps.c in both versions have not man different lines
> of code, so i didn't find the error.
OK, error in Makefile.
It doesn't link with the math library.
ff
--
Frank Fiene, SYNTAGS GmbH, Im Defdahl 5-10, D-44141 Dortmund, Germany
Security, Cryptography, Networks, Software Development
http://www.syntags.de mailto:[email protected]
Frank Fiene <[email protected]> [010727 15:37] wrote:
> lgp version 2.4.0a works fine but the latest 2.5.1 does not. Compile
> error is
> data2ps.o: In function `d2p_draw_line':
> /home/ffiene/docs/lgp-2.5.1/data2ps.c:180: undefined reference to
> `cos'
> /home/ffiene/docs/lgp-2.5.1/data2ps.c:181: undefined reference to
> `sin'
>
> The files data2ps.c in both versions have not man different lines of
> code, so i didn't find the error.
Try adding -lm to the CFLAGS in the Makefile, this should do the trick.
Gordon
--
+---------------------------------------------------------------------+
| Gordon Fraser | * dpkg ponders: 'C++' should have been |
| [email protected] | called 'D' |
| ICQ: 12413204 | -- #Debian |
| http://www.freakzone.net | |
+---------------------------------------------------------------------+
On Fri, Jul 27, 2001 at 03:37:31PM +0200, Frank Fiene wrote:
> On Friday, 27. July 2001 14:52, Gordon Fraser wrote:
> > Frank Fiene <[email protected]> [010727 13:19] wrote:
> > > Where can i find the graphical overview of the linux kernel
> > > source tree? I saw a big jpg and a link to a homepage, but i lost
> > > the informations.
> >
> > This is what you're looking for:
> > http://fcgp.sourceforge.net/
>
> Thanks, Gordon and Jan-Benedict.
>
> lgp version 2.4.0a works fine but the latest 2.5.1 does not. Compile
> error is
> data2ps.o: In function `d2p_draw_line':
> /home/ffiene/docs/lgp-2.5.1/data2ps.c:180: undefined reference to
> `cos'
> /home/ffiene/docs/lgp-2.5.1/data2ps.c:181: undefined reference to
> `sin'
Add "-lm" somewhere to the compile call. It's missing to include
the mathematical library. So it's a bug in the makefile.
MfG, JBG