Re: [Rd] R-devel problems

2003-02-26 Thread Jan de Leeuw
Number 3 below is fixed. Number 5 is a bootstrap problem, which could be solved perhaps with make bin; make install bin; make install modules packages or by doing a real two stage build. But I agree that is a major change in the build process. This can also be hacked by doing a make install, wait

Re: [Rd] R-devel problems

2003-02-26 Thread Kurt Hornik
> Jan de Leeuw writes: > The OS X configure in R-devel has been changed to use two-level > namespaces. There are still some problems. > 3. Configure does not pass the $(Rexecbindir) to the Makefiles in the > /src/library directory, so the links cannot find the bundle_loader. I > added them by

Re: [Rd] R-devel problems

2003-02-25 Thread Jan de Leeuw
Indeed. But I was expecting it not to look for X includes. This has nothing to do with R, however, only with tk.h for AquaTk. On Tuesday, Feb 25, 2003, at 09:18 US/Pacific, [EMAIL PROTECTED] wrote: If you 1) Tell configure not to look for X includes 2) Tell it a TCLTK_CPPFLAGS omitting X in

Re: [Rd] R-devel problems

2003-02-25 Thread ripley
If you 1) Tell configure not to look for X includes 2) Tell it a TCLTK_CPPFLAGS omitting X includes then I think you should expect no X includes to be found, no? Brian On Thu, 1 Jan 1970, Jan de Leeuw wrote: > As for the tcl/tk, I actually configured without pointing to > tclConfig.sh > and

Re: [Rd] R-devel problems

2003-02-25 Thread Jan de Leeuw
As for the tcl/tk, I actually configured without pointing to tclConfig.sh and tkConfig.sh at all, but putting TCLTK_LIBS and TCLTK_CPPFLAGS in the environment. I could try to use, in addition, --with-tclconfig and --with-tkconfig, but I thought that would not be necessary if location of headers

Re: [Rd] R-devel problems

2003-02-25 Thread ripley
On Mon, 24 Feb 2003, Jan de Leeuw wrote: > The OS X configure in R-devel has been changed to use two-level > namespaces. There > are still some problems. > > 1. Trunmed.c in the modreg packages defines a function heapsort(), > while heapsort > is also defined (differently) in /usr/lib/stdlib.h.

[Rd] R-devel problems

2003-02-24 Thread Jan de Leeuw
The OS X configure in R-devel has been changed to use two-level namespaces. There are still some problems. 1. Trunmed.c in the modreg packages defines a function heapsort(), while heapsort is also defined (differently) in /usr/lib/stdlib.h. I (temporarily) disabled the definition in stdlib.h.