how could i prevent this error message? what is wrong?
audio1:/opt/download/pd-0.34-4/src# make cc -DPD -DUNIX -Wall -W -Wstrict-prototypes -Werror -Wno-unused -Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer -DINSTALL_PREFIX="/usr/local" -I. -c -o ../obj/t_main.o t_main.c t_main.c:16: tk.h: No such file or directory make: *** [t_main.o] Error 1
the tk.h file is in /usr/include/tcl8.3/tk.h
hi! i had the same problem with my debian system and tcl/tk 8.3 if you put the whole path in the include-directive in t_main.c and t_tkcmd.c make will work.
t_main.c:#include "/usr/include/tcl8.3/tk.h" t_tkcmd.c:#include "/usr/include/tcl8.3/tk.h"
regards d13b
how could i prevent this error message? what is wrong?
audio1:/opt/download/pd-0.34-4/src# make cc -DPD -DUNIX -Wall -W -Wstrict-prototypes -Werror -Wno-unused -Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer -DINSTALL_PREFIX="/usr/local" -I. -c -o ../obj/t_main.o t_main.c t_main.c:16: tk.h: No such file or directory make: *** [t_main.o] Error 1
the tk.h file is in /usr/include/tcl8.3/tk.h
d about Re: [PD] tk.h: No such file or directory / Today
|i had the same problem with my debian system and tcl/tk 8.3 |if you put the whole path in the include-directive in |t_main.c and t_tkcmd.c make will work. | |t_main.c:#include "/usr/include/tcl8.3/tk.h" |t_tkcmd.c:#include "/usr/include/tcl8.3/tk.h"
yeah or add -I/usr/include/tcl8.3 to INCLUDE in makefile ..
|> how could i prevent this error message? what is wrong? |> |> audio1:/opt/download/pd-0.34-4/src# make |> cc -DPD -DUNIX -Wall -W -Wstrict-prototypes -Werror -Wno-unused |> -Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer |> -DINSTALL_PREFIX="/usr/local" -I. -c -o ../obj/t_main.o t_main.c |> t_main.c:16: tk.h: No such file or directory |> make: *** [t_main.o] Error 1 |> |> the tk.h file is in /usr/include/tcl8.3/tk.h |
OK, but really the "configure.in" file should somehow be fixed to find tk.h (on any system Pd's compiled on.) I don't understand the "configure" process well enough to know how to do this but am planning to try to figure that out.
cheers Miller
On Mon, Nov 26, 2001 at 10:45:29PM +0100, _-¯-_ wrote:
d about Re: [PD] tk.h: No such file or directory / Today
|i had the same problem with my debian system and tcl/tk 8.3 |if you put the whole path in the include-directive in |t_main.c and t_tkcmd.c make will work. | |t_main.c:#include "/usr/include/tcl8.3/tk.h" |t_tkcmd.c:#include "/usr/include/tcl8.3/tk.h"
yeah or add -I/usr/include/tcl8.3 to INCLUDE in makefile ..
|> how could i prevent this error message? what is wrong? |> |> audio1:/opt/download/pd-0.34-4/src# make |> cc -DPD -DUNIX -Wall -W -Wstrict-prototypes -Werror -Wno-unused |> -Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer |> -DINSTALL_PREFIX="/usr/local" -I. -c -o ../obj/t_main.o t_main.c |> t_main.c:16: tk.h: No such file or directory |> make: *** [t_main.o] Error 1 |> |> the tk.h file is in /usr/include/tcl8.3/tk.h |
-- 2471105555