Dominic, that error is generated by the lack of a missing "GNU readline" library which isn't installed on your machine. For none ubuntu machines you can search GNU readline to get the source, or do a deb package search. These are the packages: readline-common, libreadline5, & libreadline5-dev. I think all 3 are required but to be sure I would "aptitude install libreadline5-dev" and it will resolve any other dependencies.
-Cornelius On Wed, Mar 5, 2008 at 2:42 AM, Dominic Chambers <[EMAIL PROTECTED]> wrote: > Thanks for the help, installing the C development files (Gutsy BTW) > and syncing to Ian's idst-376 tag allowed me to get almost all the way > through -- I now get stuck on 'function/jolt-burg/readline.h' > referring to files that don't seem to exist. Here is readline.h: > > #if defined(WIN32) > # define READLINE_STATIC 1 > #endif > #include <readline/readline.h> > #include <readline/history.h> > > And sure enough, there is no inner readline directory? Also, here is > the build output tail in case this too means anything to anyone: > > make[3]: Leaving directory `/home/dominic/idst/function/objects/mpint' > ar rc objects.a.new _object.o Objects.o Object.o SmallInteger.o > String.o Symbol.o BlockClosure.o ProfiledMethod.o Collection.o > SequenceableCollection.o ArrayedCollection.o Array.o ByteArray.o > IdentitySet.o Association.o IdentityDictionary.o SlotDictionary.o > MemoDictionary.o OrderedCollection.o File.o Stream.o Link.o > LinkedList.o Number.o OS.o Date.o Function.o Random.o Time.o > deprecated.o mpint/*.o > mv objects.a.new objects.a > make[2]: Leaving directory `/home/dominic/idst/function/objects' > make[2]: Entering directory `/home/dominic/idst/function/jolt-burg' > > /bin/sh -ec 'cd ../objects; make' > make[3]: Entering directory `/home/dominic/idst/function/objects' > make[3]: Nothing to be done for `all'. > make[3]: Leaving directory `/home/dominic/idst/function/objects' > ./idc -g -k -I../objects -c readline.st -o readline.o > In file included from readline.o.c:328: > readline.h:4:31: error: readline/readline.h: No such file or directory > readline.h:5:30: error: readline/history.h: No such file or directory > make[2]: *** [readline.o] Error 1 > make[2]: Leaving directory `/home/dominic/idst/function/jolt-burg' > > make[1]: *** [all] Error 2 > make[1]: Leaving directory `/home/dominic/idst/function' > > make: *** [all] Error 2 > > Thanks, Dominic. > > > > _______________________________________________ > fonc mailing list > [email protected] > http://vpri.org/mailman/listinfo/fonc > -- Cornelius Toole, Jr. Graduate Research Assistant Louisiana State University Center for Computation and Technology mobile: 601.212.3045 _______________________________________________ fonc mailing list [email protected] http://vpri.org/mailman/listinfo/fonc
