Re: xlib6g-dev problem

1999-06-15 Thread Horvath Robert
Thanks for your help. I appreciate it a lot. The problem has been solved. Robert Hovath On Sun, 13 Jun 1999, Eric G. Miller wrote: > You probably need to tell gcc where to look for the X libraries and probably > where to look for the includes as well. You need to pass it flags like -lXaw > (

Re: xlib6g-dev problem

1999-06-14 Thread Eric G. Miller
You probably need to tell gcc where to look for the X libraries and probably where to look for the includes as well. You need to pass it flags like -lXaw (or something for libraries) and -I/usr/X11/include (or some such) to tell it where the header files are. This question is probably more on

Re: xlib6g-dev problem

1999-06-14 Thread Horvath Robert
Thanks for your help Carl! You have solved my problem. Bye Robert Horvath On 14 Jun 1999, Carl Mummert wrote: > > You need to specify to gcc the X library that contains all those functions. > > Try something like: > > gcc -L/usr/X11R6/lib file.c -lXt -lXaw > > The profileration of those

Re: xlib6g-dev problem

1999-06-14 Thread Carl Mummert
You need to specify to gcc the X library that contains all those functions. Try something like: gcc -L/usr/X11R6/lib file.c -lXt -lXaw The profileration of those -l options isone reason that makefiles are so popular. Carl