On 8/24/06, Jason Grossman <[EMAIL PROTECTED]> wrote: > >> > >> > ... > >> > signal.c: In function 'signal_set_handlers': > >> > signal.c:573: error: 'SIGWINCH' undeclared (first use in this > >> > function) > >> > signal.c:573: error: (Each undeclared identifier is reported > >> only once > >> > signal.c:573: error: for each function it appears in.) > >> > make: *** [signal.o] Error 1 > >> > >> > >> (This is in MacOS 10.4.7, which is nearly the latest version. As far > >> as configure is concerned, this is powerpc-apple-darwin8.7.0.) > >> > > > > Try removing '-D_POSIX_C_SOURCE=200112L' from line 53 of the Makefile. > > Nope: same error. :-( > > I tried editing out the WINCH code from a couple of the C files, > which made compilation work, but not surprisingly (since I did it in > a very crude way) that led to malloc errors when fish ran. >
With the help of another fish user on OS X (Thanks, Yann), a working fix has been found - you need to also remove '-D_XOPEN_SOURCE=600' from the same line as well. > > >> 2. On my rather slow old Macintosh, I'd like to turn off most of the > >> completions to improve responsiveness. I can see how to do this in > >> the various config files, but I'm not sure which way of doing it is > >> the most elegant (e.g., comment out lots of bits of the config files, > >> and/or delete completion list files). Any advice, please? > > > > If you want to disable _all_ command specific completions, I would > > simply change the $fish_complete_path variable. Try adding 'set > > fish_complete_path' to your ~/.fish file. > > That's the sort of thing I meant by "elegant". Thanks. It seems to > get rid of all the completions except for file-name completions ... Pretty much. You also have variable name completion and a few more generic completion types should be instantaneous even on older hardware as well. > which, for speeding things up, is just perfect. Now fish whizzes > along even on my 7-year-old computer. Glad to hear it. > > Jason > > -- Axel ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Fish-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/fish-users
