diff options
author | sabetts <sabetts> | 2001-01-02 15:29:48 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2001-01-02 15:29:48 +0000 |
commit | b4b17628574a627ad91db301f388e008e0eda4bf (patch) | |
tree | 1ace92c48505ec7fb6d3cbb2f7539b0f2fbddca9 | |
parent | accc0050e2c972244878f72a9b265223f09d6483 (diff) | |
download | ratpoison-b4b17628574a627ad91db301f388e008e0eda4bf.zip |
updated based on new configure script
-rw-r--r-- | README | 30 |
1 files changed, 6 insertions, 24 deletions
@@ -19,41 +19,23 @@ configure. If you want to configure ratpoison, edit the source. Building -------- -ratpoison comes with a Makefile that should work in most cases on most -architectures. If you have trouble compiling you may have to edit it. - -The first thing to do is compile the beast by typing 'make': - -$ make -gcc -c -g -Wall -I/usr/X11R6/include -DDEBUG main.c -o main.o -gcc -c -g -Wall -I/usr/X11R6/include -DDEBUG events.c -o events.o -gcc -c -g -Wall -I/usr/X11R6/include -DDEBUG manage.c -o manage.o -gcc -c -g -Wall -I/usr/X11R6/include -DDEBUG list.c -o list.o -gcc -c -g -Wall -I/usr/X11R6/include -DDEBUG bar.c -o bar.o -gcc main.o events.o manage.o list.o bar.o -o ratpoison -g -Wall -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 +ratpoison uses autoconf. To build it: +$ configure && make if you want to install it, simply type 'make install' as a privileged user: # make install -cp ratpoison /usr/local/bin - -If you don't want ratpoison to install in /usr/local/bin, then edit -the Makefile. Customization ------------- -By default, ratpoison is compiled using xterm. This is because more -users use xterm as opposed to alternative terms such as rxvt. - -If you do want to use a different terminal program, edit conf.h and -edit the line: - -#define TERM_PROG "xterm" /* command to boot an x term */ +Use the configure option 'disable-debug' to disable debugging symbols. -to run you're favorite X term. +Use the configure option '--with-xterm=PROG' to set the x terminal +emulator to use. The default is `xterm'. +Consult the INSTALL file for more information about the configure script. Using ----- |