I observed the same behavior as Edward this morning with R-1.2.2 on Red Hat Linux 7.0. There appears to be a problem with the library in netpbm-9.5-5, even after hunting down the missing shhopt.h that pbmplus.h is looking for. I worked around the problem by compiling e1071 without pbm support (moved pbm.c to pbm.c.bak). Matt Matthew R. Nelson, Ph.D. Director, Information Systems Esperion Therapeutics, Inc. Ann Arbor, MI 48108> -----Original Message----- > From: rossini at blindglobe.net [mailto:rossini at blindglobe.net] > Sent: Tuesday, April 03, 2001 12:02 PM > To: M. Edward (Ed) Borasky > Cc: Mailing List R > Subject: Re: [R] Can't install "e1071" > > > >>>>> "MEB" == M Edward Borasky <M.> writes: > > MEB> I can't seem to get the "e1071" package to build. Here is a > MEB> Linux log; the Windows version behaves the same way: > > I'm not seeing that, R 1.2.2, Debian i386-Linux, unstable (sid): >-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
Here's the Windows version of this problem: F:\Team\R-20010325\ContributedSources>Rcmd INSTALL e1071*.gz make: Entering directory `/cygdrive/d/rw1023/src/gnuwin32' make DLLNM= EXTRADOCS= \ -C F:/Team/R-20010325/ContributedSources/R.INSTALL/e1071 PKG=e1071 RHOME=D:/rw 1023 RLIB=D:/rw1023/library \ -f D:/rw1023/src/gnuwin32/MakePkg make[1]: Entering directory `/cygdrive/f/Team/R-20010325/ContributedSources/R.IN STALL/e1071' if [ ! -f ./TITLE -a -f ./DESCRIPTION ] ; then \ perl D:/rw1023/share/perl/maketitle.pl ./DESCRIPTION > TITLE; \ fi ---------- Making package e1071 ------------ mkdir -p D:/rw1023/library/e1071 cp -r ./DESCRIPTION ./INDEX ./TITLE ./COPYING ./COPYRIGHT.svm.cpp ./README D :/rw1023/library/e1071/ adding build stamp to DESCRIPTION installing R files making DLL make[2]: Entering directory `/cygdrive/f/Team/R-20010325/ContributedSources/R.IN STALL/e1071/src' make[3]: `libR.a' is up to date. gcc -ID:/rw1023/src/include -include D:/rw1023/src/include/globalvar.h -Wall -O2 -c Rsvm.c -o Rsvm.o Rsvm.c:3: svm.h: No such file or directory make[2]: *** [Rsvm.o] Error 1 make[2]: Leaving directory `/cygdrive/f/Team/R-20010325/ContributedSources/R.INS TALL/e1071/src' make[1]: *** [src/e1071.dll] Error 2 make[1]: Leaving directory `/cygdrive/f/Team/R-20010325/ContributedSources/R.INS TALL/e1071' make: *** [pkg-e1071] Error 2 make: Leaving directory `/cygdrive/d/rw1023/src/gnuwin32' *** Installation of e1071 failed *** F:\Team\R-20010325\ContributedSources> --- znmeb at aracnet.com (M. Edward Borasky) http://www.aracnet.com/~znmeb If there's nothing to astrology, how come so many famous men were born on holidays? -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
[ taken from r-help to r-devel, which is the more appropriate place for questions like this ]>>>>> On Tue, 3 Apr 2001 11:22:52 -0700 (PDT), >>>>> M Edward (Ed) Borasky (ME(B) wrote:> Here's the Windows version of this problem: the problem is different, because the previous problems were with the netpbm libraries (and hence not in my domain), whereas all the svm code (where your problem seems to be) does not rely on external libraries. > F:\Team\R-20010325\ContributedSources>Rcmd INSTALL e1071*.gz > make: Entering directory `/cygdrive/d/rw1023/src/gnuwin32' > make DLLNM= EXTRADOCS= \ > -C F:/Team/R-20010325/ContributedSources/R.INSTALL/e1071 PKG=e1071 RHOME=D:/rw > 1023 RLIB=D:/rw1023/library \ > -f D:/rw1023/src/gnuwin32/MakePkg > make[1]: Entering directory `/cygdrive/f/Team/R-20010325/ContributedSources/R.IN > STALL/e1071' > if [ ! -f ./TITLE -a -f ./DESCRIPTION ] ; then \ > perl D:/rw1023/share/perl/maketitle.pl ./DESCRIPTION > TITLE; \ > fi > ---------- Making package e1071 ------------ > mkdir -p D:/rw1023/library/e1071 > cp -r ./DESCRIPTION ./INDEX ./TITLE ./COPYING ./COPYRIGHT.svm.cpp ./README D > :/rw1023/library/e1071/ > adding build stamp to DESCRIPTION > installing R files > making DLL > make[2]: Entering directory `/cygdrive/f/Team/R-20010325/ContributedSources/R.IN > STALL/e1071/src' > make[3]: `libR.a' is up to date. > gcc -ID:/rw1023/src/include -include D:/rw1023/src/include/globalvar.h -Wall > -O2 -c Rsvm.c -o Rsvm.o > Rsvm.c:3: svm.h: No such file or directory Ahh, I see the bug: david included <svm.h> instead of "svm.h" ... I think this should fix the problem. Could you try replacing #include <svm.h> with #include "svm.h" in Rsvm.c? Thanks, Fritz -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._