dpk <[EMAIL PROTECTED]> writes:

> i just installed debian, and i can't seem find tcl.h

On a Debian system, the best way to answer a question like this is to
use dpkg's intrinsic ability to find files that it has installed on
the system.  So, in your case:

  $ dpkg --search tcl.h
  tcl76-dev: /usr/include/tcl/tcl.h

So if you're trying to compile a C/C++ program that needs this header,
you could either put #include<tcl/tcl.h> in the file or just a
#include<tcl.h> and add a -I/usr/include/tcl to the gcc command used
to compile the file.

-- 
Rob


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED]

Reply via email to