[#192] auto-loaded script? — Julian Fondren <julian@...>
Does ruby load any particular scripts upon startup?
13 messages
1999/01/17
[#193] Re: auto-loaded script?
— gotoken@... (GOTO Kentaro)
1999/01/17
In message "[ruby-talk:00192] auto-loaded script?"
[#194] Re: auto-loaded script?
— Julian Fondren <julian@...>
1999/01/18
> >Does ruby load any particular scripts upon startup?
[#195] Re: auto-loaded script?
— matz@... (Yukihiro Matsumoto)
1999/01/18
Hi.
[#197] Re: auto-loaded script?
— Julian Fondren <julian@...>
1999/01/18
> rb_load_file("/home/julian/.rubyrc"); /* this line added */
[#210] Get character with no wait — Gabriel <gabriel@...>
What is the best way to do a getc without waiting; so I can try to grab
8 messages
1999/01/25
[ruby-talk:00166] Re: Makefiles and -lcurses
From:
matz@... (Yukihiro Matsumoto)
Date:
1999-01-05 08:21:40 UTC
List:
ruby-talk #166
Hi.
In message "[ruby-talk:00165] Makefiles and -lcurses"
on 99/01/05, Julian Fondren <julian@imaji.net> writes:
|I want to compile the curses extension with -locurses rather than
|-lcurses, so I change ext/Makefile a bit to have -locurses instead. After
|this I `make clean', and then `make'
|
|It compiles with -lcurses. Why? There were no mentions of a Makefile
|modification, and if I grep around a bit there is no -lcurses needed to be
|changed. The Makefile in ext/Makefile has -lcurses where I had seconds
|earlier put -locurses. Wierd, and a little annoying, how can I force it to
|compile with -locurses?
Makefiles are automatically generated in the compilation process.
Modify extconf.rb in the directory, like:
have_library("curses", "initscr")
into
have_library("ocurses", "initscr")
Hope this helps.
matz.