Replying to michael kapelko:
> I have the following code:
> 
> #include <ftbuild.h>
> #include <ftconfig.h>

Why do you need to include this headers? in properly packaged
flow-tools, as done in Fedora, you will see only ftlib.h (and will
need to include only it, and will need to link to -lft only)

> #include <ftlib.h>

If you're writing C++ program but need to link to C library, you need
to (at least) do this:

extern "C" {
  #include <ftlib.h>
}

> What's wrong?

Enjoy.

-- 
Paul P 'Stingray' Komkoff Jr // http://stingr.net/key <- my pgp key
 This message represents the official view of the voices in my head
_______________________________________________
Flow-tools mailing list
[EMAIL PROTECTED]
http://mailman.splintered.net/mailman/listinfo/flow-tools

Reply via email to