Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Aug 1997 10:29:35 -0600
From:      Steve Passe <smp@csn.net>
To:        Peter Wemm <peter@FreeBSD.ORG>
Cc:        cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG
Subject:   Re: cvs commit: src/usr.bin/tclsh Makefile 
Message-ID:  <199708181629.KAA11541@Ilsa.StevesCafe.com>
In-Reply-To: Your message of "Mon, 18 Aug 1997 04:39:19 PDT." <199708181139.EAA13254@freefall.freebsd.org> 

next in thread | previous in thread | raw e-mail | index | archive | help
Peter,
> peter       1997/08/18 04:39:19 PDT
> 
>   Modified files:
>     usr.bin/tclsh        Makefile 
>   Log:
>   use -I${DESTDIR}/usr/include/tcl, not -I/usr/include/tcl
>   
>   Revision  Changes    Path
>   1.5       +2 -2      src/usr.bin/tclsh/Makefile

My last buildworld had 1 error:

--- tclAppInit.o ---
cc -nostdinc -O2 -m486 -pipe   -I/usr/obj/usr/src/tmp/usr/include -c 
/usr/obj/usr/src/tmp/usr/libdata/tcl/tclAppInit.c

/usr/obj/usr/src/tmp/usr/libdata/tcl/tclAppInit.c:20: tcl.h: No such file or 
directory

---
so it looked for tcl.h in:

 -I/usr/obj/usr/src/tmp/usr/include

but:

/* 
 * tclAppInit.c --
 ...
#include "tcl.h"

and:

# lt /usr/obj/usr/src/tmp/usr/include/tcl
total 63
drwxr-xr-x  26 bin  bin   2560 Aug 18 00:24 ..
drwxr-xr-x   4 bin  bin    512 Aug 18 00:24 .
drwxr-xr-x   2 bin  bin    512 Aug 18 00:24 generic
drwxr-xr-x   2 bin  bin    512 Aug 18 00:24 unix
-r--r--r--   1 bin  bin  58114 Aug 17 23:59 tcl.h

ie:

either need to look in:
/usr/obj/usr/src/tmp/usr/include/tcl
or:
#include "tcl/tcl.h"


--
Steve Passe	| powered by
smp@csn.net	|            Symmetric MultiProcessor FreeBSD





Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199708181629.KAA11541>