On Sat, Nov 15, 1997 at 01:30:15AM -0500, Colin R. Telmer wrote:
> I have just recently upgraded to lesstifg and lesstifg-dev to recompile a
> package I maintain using libc6 stuff. After installing the newest
> versions, 

> the make seems to fail when looking for Xm.h:
> 
> make[2]: Entering directory `/home/telmerco/debian/plan/plan-1.6.1/src'
> gcc -s -D_GNU_SOURCE -DNOLOCK -DLINUX -DRABBITS   -c main.c
> main.c:39: Xm/Xm.h: No such file or directory
> main.c:40: Xm/Text.h: No such file or directory

/usr/X11R6/include is not part of the C preprocessor's default search path
("cpp -v"). Modify your makefile to execute like
gcc -s -D_GNU_SOURCE -DNOLOCK -DLINUX -DRABBITS -I/usr/X11R6/include -c main.c
(if the Makefile is a nice one, you can add do CFLAGS+=-I/usr/X11R6/include).

HTH,
Ray
-- 
POPULATION EXPLOSION  Unique in human experience, an event which happened 
yesterday but which everyone swears won't happen until tomorrow.  
- The Hipcrime Vocab by Chad C. Mulligan 


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

Reply via email to